caddytls: Add dns_ttl config, improve Caddyfile tls options (#5287)

This commit is contained in:
Yannick Ihmels 2023-01-06 20:44:00 +01:00 committed by GitHub
parent 4e9ad50f65
commit 55035d327a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 173 additions and 9 deletions

View file

@ -0,0 +1,70 @@
localhost
respond "hello from localhost"
tls {
issuer acme {
dns_ttl 5m10s
}
}
----------
{
"apps": {
"http": {
"servers": {
"srv0": {
"listen": [
":443"
],
"routes": [
{
"match": [
{
"host": [
"localhost"
]
}
],
"handle": [
{
"handler": "subroute",
"routes": [
{
"handle": [
{
"body": "hello from localhost",
"handler": "static_response"
}
]
}
]
}
],
"terminal": true
}
]
}
}
},
"tls": {
"automation": {
"policies": [
{
"subjects": [
"localhost"
],
"issuers": [
{
"challenges": {
"dns": {
"ttl": 310000000000
}
},
"module": "acme"
}
]
}
]
}
}
}
}