diff --git a/pkgs/e11sync-caddyfile.nix b/pkgs/e11sync-caddyfile.nix index 769caaf..e706a5e 100644 --- a/pkgs/e11sync-caddyfile.nix +++ b/pkgs/e11sync-caddyfile.nix @@ -7,8 +7,9 @@ writeTextFile { name = "e11sync-caddyfile"; text = '' @addSlash path /static /blog /contact + route @addSlash { - redir {uri}/ 302 + redir {uri}/ 302 } header /static/* Cache-Control "public, max-age=31536000, immutable" @@ -21,6 +22,9 @@ writeTextFile { } } - reverse_proxy http://127.0.0.1:${toString backendPort} + route { + encode gzip + reverse_proxy http://127.0.0.1:${toString backendPort} + } ''; }