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.
86 lines
1.0 KiB
86 lines
1.0 KiB
4 years ago
|
{
|
||
|
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"
|
||
|
],
|
||
4 years ago
|
"issuers": [
|
||
|
{
|
||
|
"module": "internal"
|
||
|
}
|
||
|
]
|
||
4 years ago
|
},
|
||
|
{
|
||
|
"subjects": [
|
||
|
"*.*.tld",
|
||
|
"*.tld"
|
||
|
],
|
||
4 years ago
|
"issuers": [
|
||
|
{
|
||
|
"module": "internal"
|
||
|
}
|
||
|
],
|
||
4 years ago
|
"on_demand": true
|
||
|
},
|
||
|
{
|
||
4 years ago
|
"issuers": [
|
||
|
{
|
||
|
"module": "internal"
|
||
|
}
|
||
|
]
|
||
4 years ago
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|