在CentOS 6.9 x86_64上开启nginx 1.12.2的proxy_cache缓存配置
本文研究nginx提供的緩存功能,下面是實操記錄。
這篇博文基于前面文章的基礎(chǔ)上搭建,至始至終都是root用戶操作
http://blog.csdn.net/tao_627/article/details/78953800
緩存清除功能需要借助第三方模塊ngx_cache_purge,其鏈接如下
https://github.com/FRiCKLE/ngx_cache_purge
下載其源碼并安裝進nginx中去
cd /usr/local/src
git clone https://github.com/FRiCKLE/ngx_cache_purge.git
編譯
cd nginx-1.12.2
./configure --with-http_ssl_module \
--with-pcre=/usr/local/src/pcre-8.41 \
--with-zlib=/usr/local/src/zlib-1.2.11 \
--with-openssl=/usr/local/src/openssl-1.1.0g \
--with-http_stub_status_module \
--add-module=/usr/local/src/ngx_cache_purge
make
make install
配置
在nginx.conf中添加如下配置塊
proxy_cache_path /usr/local/nginx/cache1 levels=1:2 keys_zone=cache1:100m inactive=1d max_size=2g;add_header X-Cache $upstream_cache_status;location ^~ /static/ {proxy_cache cache1;proxy_cache_key $host$uri$is_args$args;proxy_cache_valid 200 304 301 302 10m;proxy_cache_methods GET; proxy_cache_min_uses 3;proxy_cache_bypass $cookie_nocache $arg_nocache $arg_comment;proxy_pass http://127.0.0.1:18080;expires 30d;access_log logs/cache.log main;
}在相同的server塊中,使用單獨的location來配置緩存清除功能
location ~ /purge(/.*) {allow 127.0.0.1;deny all;proxy_cache_purge cache1 $host$1$is_args$args;access_log logs/cache.log main;
}
完整的nginx.conf配置如下:
user root;
worker_processes 1; error_log logs/error.log info;
pid logs/nginx.pid;events {worker_connections 1024;
}http {include mime.types;default_type application/octet-stream;log_format main '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';access_log logs/access.log main;access_log logs/access.log main;sendfile on;keepalive_timeout 65;proxy_cache_path /usr/local/nginx/cache1 levels=1:2 keys_zone=cache1:100m inactive=1d max_size=2g;server {listen 80;server_name localhost;#access_log logs/host.access.log main;add_header X-Cache $upstream_cache_status;location ^~ /static/ {proxy_cache cache1;proxy_cache_key $host$uri$is_args$args;proxy_cache_valid 200 304 301 302 10m;proxy_cache_methods GET;proxy_cache_min_uses 3;proxy_cache_bypass $cookie_nocache $arg_nocache $arg_comment;proxy_pass http://127.0.0.1:18080;expires 30d;access_log logs/cache.log main;-}location ~ /purge(/.*) {proxy_cache_purge cache1 $host$1$is_args$args;allow 127.0.0.1;deny all;access_log logs/cache.log main;}location /ngx_status {stub_status;access_log off;allow 127.0.0.1;deny all;}location / {root html;index index.html index.htm;}#error_page 404 /404.html;# redirect server error pages to the static page /50x.html#error_page 500 502 503 504 /50x.html;location = /50x.html {root html;}}server {listen 18080;server_name localhost;location ^~ /static/ {root html;expires 10d;}location / {root html;index index.html index.htm;}error_page 500 502 503 504 /50x.html;location = /50x.html {root html;}}
}
檢測并使配置生效
/usr/local/nginx/sbin/nginx -t
/usr/local/nginx/sbin/nginx -s reload
下面是/usr/local/nginx下面的目錄結(jié)構(gòu)截圖
ps auxf | grep nginx | grep -v grep
注意此時發(fā)現(xiàn)已經(jīng)多了一個cache manager進程。
測試
要求現(xiàn)在的nginx cache功能不能和原來添加的模塊功能相沖突。下面逐一進行測試。curl -vo /dev/null 'http://127.0.0.1/'
curl -v http://127.0.0.1/ngx_status
curl -vo /dev/null 'http://127.0.0.1/static/a.gif'
根據(jù)配置,累計請求同一請求3次之后,才會緩存主
從Firefox瀏覽器中訪問的結(jié)果
再次請求該資源,發(fā)現(xiàn)緩存狀態(tài)是MISS
curl -vo /dev/null 'http://127.0.0.1/static/a.gif'
測試中發(fā)現(xiàn)的問題
選項proxy_cache_min_uses表示同一個請求超過多少次才放入緩存,但是我發(fā)現(xiàn),使用ngx_cache_purge模塊刪除之后,再次發(fā)送同一個請求,發(fā)現(xiàn)兩次就緩存了。個人感覺這是個模塊兼容性的bug。
[1].http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache
[2].https://github.com/FRiCKLE/ngx_cache_purge
[3].http://phl.iteye.com/blog/2256356
[4].http://blog.csdn.net/czp11210/article/details/28596649
[5].http://www.jackieathome.net/archives/411.html
[6].http://blog.csdn.net/dengjiexian123/article/details/53386586
總結(jié)
以上是生活随笔為你收集整理的在CentOS 6.9 x86_64上开启nginx 1.12.2的proxy_cache缓存配置的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在CentOS 6.9 x86_64上开
- 下一篇: 在CentOS 6.9 x86_64的n