702 B
702 B
Compress
Compressing the Response before Sending it to the Client {: .subtitle }
The Compress middleware enables the gzip compression.
Configuration Examples
# Enable gzip compression
labels:
- "traefik.http.middlewares.test-compress.compress=true"
# Enable gzip compression
[http.middlewares]
[http.middlewares.test-compress.Compress]
Notes
Responses are compressed when:
- The response body is larger than
512
bytes. - The
Accept-Encoding
request header containsgzip
. - The response is not already compressed, i.e. the
Content-Encoding
response header is not already set.