This commit is contained in:
Matthew Holt 2025-07-30 14:43:20 -06:00
parent 3bd413546b
commit 4fd2acb5c9
No known key found for this signature in database
GPG key ID: 2A349DD577D586A5

View file

@ -0,0 +1,60 @@
{
dns mock
acme_dns
}
example.com {
}
----------
{
"apps": {
"http": {
"servers": {
"srv0": {
"listen": [
":443"
],
"routes": [
{
"match": [
{
"host": [
"example.com"
]
}
],
"terminal": true
}
]
}
}
},
"tls": {
"automation": {
"policies": [
{
"subjects": [
"example.com"
],
"issuers": [
{
"challenges": {
"dns": {
"provider": {
"name": "mock"
}
}
},
"module": "acme"
}
]
}
]
},
"dns": {
"name": "mock"
}
}
}
}