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
Asked
Active
Viewed 7,784 times
1 Answers
9
One of the first articles I found when searching online for nginx and brotli, is this link. It kind of answers your question — I think:
Browsers which support 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."
-
As I see most servers answers in brotli if there is only brotli in accepted encodings. So works nginx brotli plugin from google for example – Роман Коптев May 04 '23 at 06:18