mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-02 13:59:50 +08:00
80 lines
978 B
Plaintext
80 lines
978 B
Plaintext
|
{
|
||
|
local_certs
|
||
|
}
|
||
|
|
||
|
*.tld, *.*.tld {
|
||
|
tls {
|
||
|
on_demand
|
||
|
}
|
||
|
}
|
||
|
|
||
|
foo.tld, www.foo.tld {
|
||
|
}
|
||
|
----------
|
||
|
{
|
||
|
"apps": {
|
||
|
"http": {
|
||
|
"servers": {
|
||
|
"srv0": {
|
||
|
"listen": [
|
||
|
":443"
|
||
|
],
|
||
|
"routes": [
|
||
|
{
|
||
|
"match": [
|
||
|
{
|
||
|
"host": [
|
||
|
"foo.tld",
|
||
|
"www.foo.tld"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"terminal": true
|
||
|
},
|
||
|
{
|
||
|
"match": [
|
||
|
{
|
||
|
"host": [
|
||
|
"*.tld",
|
||
|
"*.*.tld"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"terminal": true
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"tls": {
|
||
|
"automation": {
|
||
|
"policies": [
|
||
|
{
|
||
|
"subjects": [
|
||
|
"foo.tld",
|
||
|
"www.foo.tld"
|
||
|
],
|
||
|
"issuer": {
|
||
|
"module": "internal"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"subjects": [
|
||
|
"*.*.tld",
|
||
|
"*.tld"
|
||
|
],
|
||
|
"issuer": {
|
||
|
"module": "internal"
|
||
|
},
|
||
|
"on_demand": true
|
||
|
},
|
||
|
{
|
||
|
"issuer": {
|
||
|
"module": "internal"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|