Home > Backend Development > PHP Tutorial > 关于Nginx的http_gzip_static_module和http_gzip_module的问题?

关于Nginx的http_gzip_static_module和http_gzip_module的问题?

WBOY
Release: 2016-06-06 20:35:29
Original
1776 people have browsed it

请问Nginx的http_gzip_static_module和http_gzip_module区别是什么?一般选择哪个?同时编译进去可以吗?

回复内容:

请问Nginx的http_gzip_static_module和http_gzip_module区别是什么?一般选择哪个?同时编译进去可以吗?

http_gzip_module提供了对gzip的基本的支持,默认是编译到nginx的发行版本里面的。注意的可以通过gzip_comp_level来制定压缩的比例,压缩的体积越小,对cpu的消耗越大。

http_gzip_static_module则是针对nginx serve的静态文件,需要编译进去才能有。比如a.html,如果启用了gzip_static on,如果同一目录下还有a.html.gz作为a.html压缩版本存在,那么nginx会以a.html.gz作为a.html的gzip version来serve。这样,可以采用对cpu消耗更大,但是压缩效果更好的算法事先压好.gz文件,而不是让nginx在访问的时候现压缩从而节省cpu。

另外,两个模块可以同时编译进去。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template