User Tools

Site Tools


nginx_compression

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
nginx_compression [2016/02/20 17:25] luke7858nginx_compression [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 3: Line 3:
 \\ \\
 \\ \\
-**__Note__**: since compressions happens at run time it can add considerable processing overhead which can in turn cause negative performance. +**__Note__**: since compressions happens at run time it can add considerable processing overhead which can in turn cause negative performance. 
 +\\ 
 +**__Note2__**: Some clients do not support responses with gzip encoding method. To successfully server both clients that do and do no accept compressed data, nginx can decompress data on the fily when sending it to a client that does not support compression 
 <sxh bash> <sxh bash>
         gzip on;         gzip on;
-        gzip_disable "msie6";+        gzip_disable "MSIE [1-6]\.(?!.*SV1)";
         gzip_vary on;         gzip_vary on;
         gzip_proxied any;         gzip_proxied any;
Line 12: Line 14:
         gzip_buffers 16 8k;         gzip_buffers 16 8k;
         gzip_http_version 1.1;         gzip_http_version 1.1;
-        gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript; +        gzip_types 
 +            text/plain 
 +            text/css 
 +            application/json 
 +            application/x-javascript 
 +            text/xml application/xml 
 +            application/xml+rss 
 +            text/javascript;
 </sxh> </sxh>
 +\\
 +^ Value ^ Description ^
 +| gzip on | turns on compressions |
 +| gzip_disable | disables gzip compression for browsers that don't support it (in this case MS Internet Explorer before version 6 SV1). | 
 +| gzip_vary on | This sets the response header Vary: Accept-Encoding. Some proxies have a bug in that they serve compressed content to browsers that don't support it. By setting the Vary: Accept-Encoding header, you instruct proxies to store both a compressed and uncompressed version of the content.|
 +| gzip_proxied | By default, NGINX does not compress responses to proxied requests (requests that come from the proxy server). The fact that a request comes from a proxy server is determined by the presence of the Via header field in the request. To configure compression of these responses, use the gzip_proxied directive. The directive has a number of parameters specifying which kinds of proxied requests NGINX should compress - any means enable compression for all requests|
 +| gzip_comp_level | This is the compression level (between 1 and 9) where 1 is the least compression (fastest) and 9 is the most (slowest). |
 +| gzip_types | By default, NGINX compresses responses only with MIME type text/html |
 +\\
  
- 
-<sxh bash> 
- 
-</sxh> 
- 
-<sxh bash> 
- 
-</sxh> 
 === Testing Compression === === Testing Compression ===
 Has your compression been configured correctly? Has your compression been configured correctly?
nginx_compression.1455989137.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki