Nginx自动缩小HTML输出


12

有谁知道一种获取nginx(或任何其他方法)的方法来动态地减小html输出?对我来说,这似乎很简单,可以节省几kb并帮助加快网站速度。


3
我不确定具有此功能的扩展程序,但是值得吗?每个请求都会对CPU产生影响,这意味着随着负载的增加,您的网站将需要更多的CPU。我假设您已经在使用gzip扩展名来压缩文本,然后再发送它,因此,所有空白都将在该过程中删除。您还可以预gz文件,这样可以节省每个请求的CPU时间。
Andrew Taylor

@AndrewTaylor,所以这就是为什么以后最好对其进行缓存的原因。
poige'5

Answers:


2

适用于Nginx的Google Pagespeed可以缩小尺寸,还可以做很多其他事情。但是,当我进行基准测试时,考虑到我的网站已经进行了优化,因此并没有太大的影响。对于尚未进行优化的网站,这可能会产生重大影响。

有一个关于如何得到的Nginx /工作的PageSpeed教程这里。您必须从源代码构建它。如果碰巧碰到该区域,我倾向于保持链接网站的更新,因此它可能比下面的答案更及时。

cd /home/ec2-user
mkdir nginx-build
cd nginx-build
service nginx stop
yum groupinstall "Development Tools"
yum install pcre-devel zlib-devel openssl-devel
wget http://nginx.org/download/nginx-1.9.11.tar.gz
wget http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz
wget https://github.com/openresty/headers-more-nginx-module/archive/v0.29.tar.gz
tar -xzf nginx-1.9.11.tar.gz
tar -xzf ngx_cache_purge-2.3.tar.gz
tar -xzf v0.29.tar.gz
tar -xzf 1.9.32.10.tar.gz    # Google Pagespeed, optional
ngx_version=1.9.32.10
wget https://github.com/pagespeed/ngx_pagespeed/archive/release-${ngx_version}-beta.zip   # Google Pagespeed, optional
cd ngx_pagespeed-release-1.9.32.10-beta   # Google Pagespeed, optional
wget https://dl.google.com/dl/page-speed/psol/${ngx_version}.tar.gz   # Google Pagespeed, optional
cd ../nginx-1.9.9
# Note that I have no idea what the next line does but it was in the official guide
PS_NGX_EXTRA_FLAGS="--with-cc=/opt/rh/devtoolset-2/root/usr/bin/gcc"
# Safe option, slower, lots of modules included
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-threads --with-stream --with-stream_ssl_module --with-http_slice_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_v2_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' --add-module=/tmp/ngx_cache_purge-2.3 --add-module=/tmp/headers-more-nginx-module-0.29 --with-http_realip_module --add-modeule=../ngx_pagespeed-release-1.9.32.10-beta
make && make install
make clean  (NB: optional)
service nginx start

12

我的建议:忘记缩小并使用gzip模块。它将更好地工作并实现相同的目标。但是,当然可以。这里有一个名为strip的第三方模块


gzip配置示例:

# Context:  http, server, location

    gzip            on;
    gzip_min_length 1000;
    gzip_proxied    expired no-cache no-store private auth;
    gzip_types      text/plain application/xml;

2
好发现。不过,它看起来似乎还不能用于生产环境,因此我建议您改用gzip,这比减少HTML内容要省得多。
pjmorse 2012年

1
不要忘了添加更多gzip_types诸如text/html
杰拉尔德

请注意,TLS / SSL下HTML页面的gzip压缩可能容易受到BREACH的攻击
Naglis
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.