Nginx從0.7.48版本開始,支持了相似Squid的緩存功能。這個緩存是把URL及相關組合看成Key,用md5編碼哈希後保存在硬盤上,因此它能夠支持任意URL連接,同時也支持404/301/302這樣的非200狀態碼。雖然目前官方的Nginx Web緩存服務只能爲指定URL或狀態碼設置過時時間,不支持相似Squid的PURGE指令,手動清除指定緩存頁面,可是,經過一個第三方的Nginx模塊,能夠清除指定URL的緩存。
Nginx的Web緩存服務主要由proxy_cache相關指令集和fastcgi_cache相關指令集構成,前者用於反向代理時,對後端內容源服務器進行緩存,後者主要用於對FastCGI的動態程序進行緩存。二者的功能基本上同樣。
最新的Nginx版本,proxy_cache和fastcgi_cache已經比較完善,加上第三方的ngx_cache_purge模塊(用於清除指定URL的緩存),已經能夠徹底取代Squid。
在功能上,Nginx已經具有Squid所擁有的Web緩存加速功能、清除指定URL緩存的功能。而在性能上,Nginx對多核CPU的利用,賽過Squid很多。另外,在反向代理、負載均衡、健康檢查、後端服務器故障轉移、Rewrite重寫、易用性上,Nginx也比Squid強大得多。這使得一臺Nginx能夠同時做爲「負載均衡服務器」與「Web緩存服務器」來使用。javascript
[root@node2 src]# wget http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gzphp
[root@node2 src]# tar -xf ngx_cache_purge-2.3.tar.gz css
[root@node2 src]# cd nginx-1.12.2java
[root@node2 nginx-1.12.2]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_sub_module --with-pcre --add-module=../ngx_cache_purge-2.3 --add-module=./nginx_upstream_check_modulenode
[root@node2 nginx-1.12.2]# wget http://labs.frickle.com/files/ngx_cache_purge-2.3.tar.gz nginx
[root@node2 nginx-1.12.2]# cd /usr/local/nginx/sbin/web
[root@node2 sbin]# mv nginx nginx.bak01vim
[root@node2 sbin]# cp /usr/local/src/nginx-1.12.2/objs/nginx /usr/local/nginx/sbin後端
[root@node2 sbin]# /usr/local/nginx/sbin/nginx -s stop數組
編譯完成
[root@node2 sbin]# cd /usr/local/nginx/conf/
[root@node2 conf]# vim nginx.conf
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; charset utf-8; server_names_hash_bucket_size 128; client_header_buffer_size 32k; large_client_header_buffers 4 32k; client_max_body_size 300m; sendfile on; tcp_nopush on; keepalive_timeout 65; tcp_nodelay on; client_body_buffer_size 512k; proxy_connect_timeout 5; proxy_read_timeout 60; proxy_send_timeout 5; proxy_buffer_size 16k; proxy_buffers 4 64k; proxy_busy_buffers_size 128k; proxy_temp_file_write_size 128k; gzip on; gzip_min_length 1k; gzip_buffers 4 16k; gzip_http_version 1.1; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css application/xml; gzip_vary on; #注:proxy_temp_path和proxy_cache_path指定的路徑必須在同一分區 proxy_temp_path /data0/proxy_temp_dir; #設置Web緩存區名稱爲cache_one,內存緩存空間大小爲200MB,1天沒有被訪問的內容自動清除,硬盤緩存空間大小爲30GB。 proxy_cache_path /data0/proxy_cache_dir levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=30g; upstream web_pools { server 172.25.254.134:80 weight=5; server 172.25.254.135:80 weight=5; # server 172.25.254.158:80 weight=5 backup; check interval=5000 rise=1 fall=3 timeout=4000; } server { listen 80; server_name www.lbtest.com; location / { #若是後端的服務器返回50二、504、執行超時等錯誤,自動將請求轉發到upstream負載均衡池中的另外一臺服務器,實現故障轉移。 proxy_next_upstream http_502 http_504 error timeout invalid_header; proxy_cache cache_one; #對不一樣的HTTP狀態碼設置不一樣的緩存時間 proxy_cache_valid 200 304 12h; #以域名、URI、參數組合成Web緩存的Key值,Nginx根據Key值哈希,存儲緩存內容到二級緩存目錄內 proxy_cache_key $host$uri$is_args$args; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; proxy_pass http://web_pools; expires 1d; } #用於清除緩存,假設一個URL爲http://192.168.8.42/test.txt,經過訪問http://192.168.8.42/purge/test.txt就能夠清除該URL的緩存! location ~ /purge(/.*) { #設置只容許指定的IP或IP段才能夠清除URL緩存。 allow 127.0.0.1; allow 192.168.0.0/16; deny all; proxy_cache_purge cache_one $host$1$is_args$args; } #擴展名以.php、.jsp、.cgi結尾的動態應用程序不緩存。 location ~ .*\.(php|jsp|cgi)?$ { proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; proxy_pass http://web_pools; } location /nstatus{ check_status; access_log off; } } }
[root@node2 conf]# mkdir -p /data0/proxy_temp_dir
[root@node2 conf]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@node2 conf]# nginx
[root@node2 conf]# netstat -ntlp
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 60035/nginx: master
緩存配置完成