test formatted Caddyfile

This commit is contained in:
OCram85 2022-01-11 10:25:39 +01:00
parent 00bdfcf4a7
commit c3971f8e34
2 changed files with 32 additions and 12 deletions

View File

@ -1,12 +1,16 @@
:8080 {
root * /usr/share/caddy
file_server
encode gzip zstd
handle_errors {
@404 {
expression {http.error.status_code} == 404
}
rewrite @404 /404.html
file_server
}
}
{
auto_https off
}
:8080 {
root * /usr/share/caddy
file_server
encode gzip zstd
handle_errors {
@404 {
expression {http.error.status_code} == 404
}
rewrite @404 /404.html
file_server
}
}

16
Caddyfile.back Normal file
View File

@ -0,0 +1,16 @@
{
auto_https off
}
:8080 {
root * /usr/share/caddy
file_server
encode gzip zstd
handle_errors {
@404 {
expression {http.error.status_code} == 404
}
rewrite @404 /404.html
file_server
}
}