Add global resolvers directive for DNS challenge configuration

This commit is contained in:
Pavel Siomachkin 2025-10-09 19:26:38 +02:00
parent 3c003deec6
commit 9411595df0
9 changed files with 531 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{
resolvers 1.1.1.1 8.8.8.8
}
example.com {
}
----------
{
"apps": {
"http": {
"servers": {
"srv0": {
"listen": [
":443"
],
"routes": [
{
"match": [
{
"host": [
"example.com"
]
}
],
"terminal": true
}
]
}
}
},
"tls": {
"resolvers": [
"1.1.1.1",
"8.8.8.8"
]
}
}
}