nginx.conf: Remove the gzip_buffers directive and let nginx figure it out instead, that way it will align them to CPU cache lines for greater performance
This commit is contained in:
parent
f0527124a4
commit
e79e23fa0c
|
@ -58,7 +58,6 @@ http {
|
||||||
gzip_http_version 1.0;
|
gzip_http_version 1.0;
|
||||||
gzip_comp_level 5;
|
gzip_comp_level 5;
|
||||||
gzip_min_length 512;
|
gzip_min_length 512;
|
||||||
gzip_buffers 4 8k;
|
|
||||||
gzip_proxied any;
|
gzip_proxied any;
|
||||||
gzip_types
|
gzip_types
|
||||||
# text/html is always compressed by HttpGzipModule
|
# text/html is always compressed by HttpGzipModule
|
||||||
|
|
Loading…
Reference in New Issue