caddy: gzip encoding
This commit is contained in:
parent
47d1ba611b
commit
389df7965b
|
@ -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}
|
||||
}
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue