Browse Source
* Added preferred_chains option to Caddyfile * Caddyfile adapt tests for preferred_chainsmaster
Klooven
4 years ago
committed by
GitHub
5 changed files with 187 additions and 1 deletions
@ -0,0 +1,56 @@ |
|||
{ |
|||
preferred_chains smallest |
|||
} |
|||
|
|||
localhost |
|||
---------- |
|||
{ |
|||
"apps": { |
|||
"http": { |
|||
"servers": { |
|||
"srv0": { |
|||
"listen": [ |
|||
":443" |
|||
], |
|||
"routes": [ |
|||
{ |
|||
"match": [ |
|||
{ |
|||
"host": [ |
|||
"localhost" |
|||
] |
|||
} |
|||
], |
|||
"terminal": true |
|||
} |
|||
] |
|||
} |
|||
} |
|||
}, |
|||
"tls": { |
|||
"automation": { |
|||
"policies": [ |
|||
{ |
|||
"subjects": [ |
|||
"localhost" |
|||
], |
|||
"issuers": [ |
|||
{ |
|||
"module": "acme", |
|||
"preferred_chains": { |
|||
"smallest": true |
|||
} |
|||
}, |
|||
{ |
|||
"module": "zerossl", |
|||
"preferred_chains": { |
|||
"smallest": true |
|||
} |
|||
} |
|||
] |
|||
} |
|||
] |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,57 @@ |
|||
localhost |
|||
|
|||
tls { |
|||
issuer acme { |
|||
preferred_chains { |
|||
any_common_name "Generic CA 1" "Generic CA 2" |
|||
} |
|||
} |
|||
} |
|||
---------- |
|||
{ |
|||
"apps": { |
|||
"http": { |
|||
"servers": { |
|||
"srv0": { |
|||
"listen": [ |
|||
":443" |
|||
], |
|||
"routes": [ |
|||
{ |
|||
"match": [ |
|||
{ |
|||
"host": [ |
|||
"localhost" |
|||
] |
|||
} |
|||
], |
|||
"terminal": true |
|||
} |
|||
] |
|||
} |
|||
} |
|||
}, |
|||
"tls": { |
|||
"automation": { |
|||
"policies": [ |
|||
{ |
|||
"subjects": [ |
|||
"localhost" |
|||
], |
|||
"issuers": [ |
|||
{ |
|||
"module": "acme", |
|||
"preferred_chains": { |
|||
"any_common_name": [ |
|||
"Generic CA 1", |
|||
"Generic CA 2" |
|||
] |
|||
} |
|||
} |
|||
] |
|||
} |
|||
] |
|||
} |
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue