0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-30 22:34:15 -05:00
caddy/caddytest/integration/caddyfile_adapt/http_only_hostnames.txt
Matthew Holt d68cff8eb6
httpcaddyfile: Skip TLS APs for HTTP-only hosts (fix #3977)
This is probably an invasive change, but existing tests continue to pass.
It seems to make sense this way. There is likely an edge case I haven't
considered.
2021-01-19 14:16:06 -07:00

648 B

https://github.com/caddyserver/caddy/issues/3977

http://* { respond "Hello, world!" }

{ "apps": { "http": { "servers": { "srv0": { "listen": [ ":80" ], "routes": [ { "match": [ { "host": [ "*" ] } ], "handle": [ { "handler": "subroute", "routes": [ { "handle": [ { "body": "Hello, world!", "handler": "static_response" } ] } ] } ], "terminal": true } ] } } } } }