You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
1.2 KiB
89 lines
1.2 KiB
# https://caddy.community/t/caddyfile-having-individual-sites-differ-from-global-options/11297
|
|
{
|
|
local_certs
|
|
}
|
|
|
|
a.example.com {
|
|
tls internal
|
|
}
|
|
|
|
b.example.com {
|
|
tls abc@example.com
|
|
}
|
|
|
|
c.example.com {
|
|
}
|
|
----------
|
|
{
|
|
"apps": {
|
|
"http": {
|
|
"servers": {
|
|
"srv0": {
|
|
"listen": [
|
|
":443"
|
|
],
|
|
"routes": [
|
|
{
|
|
"match": [
|
|
{
|
|
"host": [
|
|
"a.example.com"
|
|
]
|
|
}
|
|
],
|
|
"terminal": true
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"host": [
|
|
"b.example.com"
|
|
]
|
|
}
|
|
],
|
|
"terminal": true
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"host": [
|
|
"c.example.com"
|
|
]
|
|
}
|
|
],
|
|
"terminal": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"tls": {
|
|
"automation": {
|
|
"policies": [
|
|
{
|
|
"subjects": [
|
|
"b.example.com"
|
|
],
|
|
"issuers": [
|
|
{
|
|
"email": "abc@example.com",
|
|
"module": "acme"
|
|
},
|
|
{
|
|
"email": "abc@example.com",
|
|
"module": "zerossl"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"issuers": [
|
|
{
|
|
"module": "internal"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|