Francis Lavoie
3 years ago
committed by
GitHub
2 changed files with 74 additions and 1 deletions
@ -0,0 +1,54 @@ |
|||
a.example.com { |
|||
tls { |
|||
issuer internal { |
|||
ca foo |
|||
lifetime 24h |
|||
sign_with_root |
|||
} |
|||
} |
|||
} |
|||
---------- |
|||
{ |
|||
"apps": { |
|||
"http": { |
|||
"servers": { |
|||
"srv0": { |
|||
"listen": [ |
|||
":443" |
|||
], |
|||
"routes": [ |
|||
{ |
|||
"match": [ |
|||
{ |
|||
"host": [ |
|||
"a.example.com" |
|||
] |
|||
} |
|||
], |
|||
"terminal": true |
|||
} |
|||
] |
|||
} |
|||
} |
|||
}, |
|||
"tls": { |
|||
"automation": { |
|||
"policies": [ |
|||
{ |
|||
"subjects": [ |
|||
"a.example.com" |
|||
], |
|||
"issuers": [ |
|||
{ |
|||
"ca": "foo", |
|||
"lifetime": 86400000000000, |
|||
"module": "internal", |
|||
"sign_with_root": true |
|||
} |
|||
] |
|||
} |
|||
] |
|||
} |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue