mirror of
https://github.com/traefik/traefik.git
synced 2025-11-20 02:01:44 +01:00
814 B
814 B
Compress
Compressing the Response before Sending it to the Client {: .subtitle }
The Compress middleware enables the gzip compression.
Configuration Examples
??? example "File -- enable gzip compression"
```toml
[Middlewares]
[Middlewares.test-compress.Compress]
```
??? example "Docker -- enable gzip compression"
```yml
a-container:
image: a-container-image
labels:
- "traefik.middlewares.test-compress.compress=true",
```
Notes
Responses are compressed when:
- The response body is larger than
512bytes. - The
Accept-Encodingrequest header containsgzip. - The response is not already compressed, i.e. the
Content-Encodingresponse header is not already set.
