mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
b687d7b967
* httpcaddyfile: Support multiple values for `default_bind` * Fix ordering of server blocks
669 B
669 B
{ default_bind tcp4/0.0.0.0 tcp6/[::] }
example.com { }
example.org:12345 { }
{ "apps": { "http": { "servers": { "srv0": { "listen": [ "tcp4/0.0.0.0:12345", "tcp6/[::]:12345" ], "routes": [ { "match": [ { "host": [ "example.org" ] } ], "terminal": true } ] }, "srv1": { "listen": [ "tcp4/0.0.0.0:443", "tcp6/[::]:443" ], "routes": [ { "match": [ { "host": [ "example.com" ] } ], "terminal": true } ] } } } } }