NGINX Compression – Enable Both Brotli and Gzip

gzipnginx

Is it possible to enable both gzip and brotli compression in NGINX?
If the client supports both then return brotli, if only gzip / brotli then return the specicfied, and else if no support for gzip / brotli return plain text

Best Answer

One of the first articles I found when searching online for nginx and brotli, is this link. It kinda answers your question — I think:

Browsers which supports brotli send ‘br’ along with ‘gzip’ in accept-encoding request header. If brotli is enabled on your web server, you will get response in brotli compressed format.

This means to me that if the client supports both, brotli is preferred over gzip.

Also note that "Brotli or gzip should not be used for binary files like JPEG, PNG, MP4."