原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://nolinux.blog.51cto.com/4824967/1580194
[root@tools-ops01-jz ~]# yum install gcc gcc-c++ make wget subversion -y [root@tools-ops01-jz ~]# cd /usr/local/src [root@tools-ops01-jz src]# wget http://down1.chinaunix.net/distfiles/openssl-0.9.8q.tar.gz [root@tools-ops01-jz src]# tar zxf openssl-0.9.8q.tar.gz [root@tools-ops01-jz src]# wget http://nchc.dl.sourceforge.net/project/pcre/pcre/8.32/pcre-8.32.tar.gz [root@tools-ops01-jz src]# tar zxf pcre-8.32.tar.gz [root@tools-ops01-jz src]#
[root@tools-ops01-jz src]# svn co http://code.taobao.org/svn/nginx_concat_module/trunk/ nginx_concat_module
[root@tools-ops01-jz src]# grep javascript nginx_concat_module/ngx_http_concat_module.c ngx_string("application/x-javascript"),
[root@tools-ops01-jz src]# grep javascript nginx_concat_module/ngx_http_concat_module.c ngx_string("application/javascript"),
[root@tools-ops01-jz src]# wget http://nginx.org/download/nginx-1.6.0.tar.gz [root@tools-ops01-jz src]# tar zxf nginx-1.6.0.tar.gz [root@tools-ops01-jz src]# useradd nginx -s /sbin/nologin [root@tools-ops01-jz src]# cd nginx-1.6.0 [root@tools-ops01-jz nginx-1.6.0]# ./configure --user=nginx --group=nginx --prefix=/usr/local/nginx-1.6.0 --with-http_ssl_module --with-openssl=/usr/local/src/openssl-0.9.8q --with-pcre=/usr/local/src/pcre-8.32 --add-module=/usr/local/src/nginx-concat-master [root@tools-ops01-jz nginx-1.6.0]# make [root@tools-ops01-jz nginx-1.6.0]# make install [root@tools-ops01-jz nginx-1.6.0]# ln -s /usr/local/nginx-1.6.0 /usr/local/nginx [root@tools-ops01-jz nginx-1.6.0]# /usr/local/nginx -s reload
concat on; # nginx_concat_module主开关 concat_max_files 10; # 最大合并文件数 concat_unique on; # 只允许同类型文件合并 concat_types text/html; # 允许合并的文件类型,多个以逗号分隔。如:application/x-javascript, text/css
[root@tools-ops01-jz nginx-1.6.0]# curl http://localhost/b.js bbbbbbbbbbbbbbbbbbbbbbbbbbb [root@tools-ops01-jz nginx-1.6.0]# curl http://localhost/a.js aaaaaaaaaaaaaaaaaaaaaaaaaaa [root@tools-ops01-jz nginx-1.6.0]# curl http://localhost/??a.js,b.js aaaaaaaaaaaaaaaaaaaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbbb
转自:http://nolinux.blog.51cto.com/4824967/1580194
原创文章,作者:s19930811,如若转载,请注明出处:http://www.178linux.com/1934