1、nginx默认安装就会带有反向代理的功能,但想要更好的使用,还得配备frickle.com的ngx_cache_purge模块,用于清除指定URL的缓存。
2、下载ngx_cache_purge.tar.gz,下载地址:http://download.csdn.net/detail/luo849278597/7991115;并解压:tar -zvxf ngx_cache_purge.tar.gz
3、下载nginx-1.7.5.tar.gz 并解压tar -zvxf nginx-1.7.5.tar.gz(不需要安装)
4、cd nginx-1.7.5
5、./configure --user=root --group=root --add-module=../ngx_cache_purge-1.4 --prefix=/usr/local/soft/nginx --with-http_stub_status_module--with-pcre=/home/jili/下载/soft/pcre-8.10--with-zlib=/home/jili/下载/soft/zlib-1.2.35(注意pcre和zlib都是源码路径而不是安装路径)
6、但是在make编译的过程中可能需要zlib-dev的依赖包,但是这个依赖包比较难找,于是只有在线安装了
$sudo apt-get install ruby
$sudo apt-get install zlib1g-dev
7、make && make install
安装完毕
注意:在此过程中可能出现一下错误
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using --without-http_gzip_moduleoption, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using --with-zlib=<path> option.
需要依赖zlib-1.2.35 ,下载地址:http://download.csdn.net/detail/luo849278597/7986513
并且需要依赖pcre,具体解释和下载地址:http://blog.csdn.net/tianyiii/article/details/39136007
8、接下来就是配置nugix.conf了,具体配置可以参看http://download.csdn.net/detail/luo849278597/7920105
在功能上,Nginx已经具备Squid所拥有的Web缓存加速功能、清除指定URL缓存的功能。而在性能上,Nginx对多核CPU的利用,胜过Squid不少。另外,在反向代理、负载均衡、健康检查、后端服务器故障转移、Rewrite重写、易用性上,Nginx也比Squid强大得多。这使得一台Nginx可以同时作为“负载均衡服务器”与“Web缓存服务器”来使用