httpcaddyfile: Add default_bind global option (#4531)

This commit is contained in:
Francis Lavoie
2022-01-18 13:29:07 -05:00
committed by GitHub
parent 93a7a45e7e
commit 1b7ff5d76c
3 changed files with 58 additions and 1 deletions

View File

@@ -0,0 +1,52 @@
{
default_bind tcp4/0.0.0.0
}
example.com {
}
example.org:12345 {
}
----------
{
"apps": {
"http": {
"servers": {
"srv0": {
"listen": [
"tcp4/0.0.0.0:12345"
],
"routes": [
{
"match": [
{
"host": [
"example.org"
]
}
],
"terminal": true
}
]
},
"srv1": {
"listen": [
"tcp4/0.0.0.0:443"
],
"routes": [
{
"match": [
{
"host": [
"example.com"
]
}
],
"terminal": true
}
]
}
}
}
}
}