0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2025-01-06 22:40:31 -05:00
caddy/caddytest/integration/caddyfile_adapt/push.txt

1 KiB

:80

push * /foo.txt

push { GET /foo.txt }

push { GET /foo.txt HEAD /foo.txt }

push { headers { Foo bar } }

{ "apps": { "http": { "servers": { "srv0": { "listen": [ ":80" ], "routes": [ { "handle": [ { "handler": "push", "resources": [ { "target": "/foo.txt" } ] }, { "handler": "push", "resources": [ { "method": "GET", "target": "/foo.txt" } ] }, { "handler": "push", "resources": [ { "method": "GET", "target": "/foo.txt" }, { "method": "HEAD", "target": "/foo.txt" } ] }, { "handler": "push", "headers": { "set": { "Foo": [ "bar" ] } } } ] } ] } } } } }