Add gzip to Caddy

This commit is contained in:
sunstep
2024-09-24 14:14:08 +02:00
committed by GitHub
parent 90276885bb
commit 294dcb0d4c

View File

@@ -113,6 +113,12 @@ Lastly, edit your Caddy config as needed:
<YOUR FQDN HERE (ex. dawarich.example.com)> {
reverse_proxy dawarich_app:3000
encode gzip {
match {
content_type application/json
}
}
}
```