httpcaddyfile: Add auto_https global option (#3284)

This commit is contained in:
Francis Lavoie
2020-05-19 18:59:51 -04:00
committed by GitHub
parent 9ee01dceac
commit fae064262d
4 changed files with 103 additions and 1 deletions
@@ -0,0 +1,37 @@
{
auto_https off
}
localhost
----------
{
"apps": {
"http": {
"servers": {
"srv0": {
"listen": [
":443"
],
"routes": [
{
"match": [
{
"host": [
"localhost"
]
}
],
"terminal": true
}
],
"tls_connection_policies": [
{}
],
"automatic_https": {
"disable": true
}
}
}
}
}
}