InterviewSolution
Saved Bookmarks
| 1. |
Explain Does Nginx Support Compress The Request To The Upstream? |
|
Answer» You can COMPRESS the request to the upstream by using the Nginx module GUNZIP. The gunzip module is a filter that decompresses responses with “CONTENT Encoding: gzip” for clients or SERVERS that do not support “gzip” encoding method. You can compress the request to the upstream by using the Nginx module gunzip. The gunzip module is a filter that decompresses responses with “Content Encoding: gzip” for clients or servers that do not support “gzip” encoding method. |
|