mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-06 00:58:26 +03:00
![Francis Lavoie](/assets/img/avatar_default.png)
Lots of the files were using CRLF instead of LF. Mostly my fault cause sometimes I make the files on Windows and VSCode for some reason kept making them with the wrong line endings. Sigh. Since .txt files typically default to spaces for indentation, I'm also adding an .editorconfig to ensure they use tabs instead
54 lines
No EOL
680 B
Text
54 lines
No EOL
680 B
Text
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
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
} |