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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
}
}
}
```