Browse Source
* add propagation_timeout to UnmarshalCaddyfile - Closes #4177 * added caddyfile_adapt testmaster
Peter Magnusson
4 years ago
committed by
GitHub
2 changed files with 86 additions and 0 deletions
@ -0,0 +1,70 @@ |
|||||
|
localhost |
||||
|
|
||||
|
respond "hello from localhost" |
||||
|
tls { |
||||
|
issuer acme { |
||||
|
propagation_timeout "10m0s" |
||||
|
} |
||||
|
} |
||||
|
---------- |
||||
|
{ |
||||
|
"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": { |
||||
|
"propagation_timeout": 600000000000 |
||||
|
} |
||||
|
}, |
||||
|
"module": "acme" |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue