Merge pull request #5 from sunstep/docs/gzip-caddy

Add gzip to Caddy
This commit is contained in:
sunstep 2024-09-24 14:14:51 +02:00 committed by GitHub
commit 4a35c0dd61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -144,6 +144,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
}
}
}
```