mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-27 22:23:48 +03:00
e6f46c8d78
* Added sign_with_root option available in the Caddyfile * Added tests for sign_with_root to validate the adapted JSON config
67 lines
1,020 B
Text
67 lines
1,020 B
Text
{
|
|
pki {
|
|
ca internal {
|
|
name "Internal"
|
|
root_cn "Internal Root Cert"
|
|
intermediate_cn "Internal Intermediate Cert"
|
|
}
|
|
}
|
|
}
|
|
|
|
acme.example.com {
|
|
acme_server {
|
|
ca internal
|
|
sign_with_root
|
|
}
|
|
}
|
|
----------
|
|
{
|
|
"apps": {
|
|
"http": {
|
|
"servers": {
|
|
"srv0": {
|
|
"listen": [
|
|
":443"
|
|
],
|
|
"routes": [
|
|
{
|
|
"match": [
|
|
{
|
|
"host": [
|
|
"acme.example.com"
|
|
]
|
|
}
|
|
],
|
|
"handle": [
|
|
{
|
|
"handler": "subroute",
|
|
"routes": [
|
|
{
|
|
"handle": [
|
|
{
|
|
"ca": "internal",
|
|
"handler": "acme_server",
|
|
"sign_with_root": true
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"terminal": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"pki": {
|
|
"certificate_authorities": {
|
|
"internal": {
|
|
"name": "Internal",
|
|
"root_common_name": "Internal Root Cert",
|
|
"intermediate_common_name": "Internal Intermediate Cert"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|