nginx缓存模块ngx_cache_purge配置 博客分类: nginx cachenginx
程序员文章站
2024-03-18 19:03:16
...
安装
./configure \
--prefix=/usr/local/nginx-1.0.6 \ # 安装路径
--with-http_stub_status_module \ # 启用nginx状态模块
--with-http_ssl_module \ # 启用SSL模块
--with-http_realip_module \ # 启用realip模块(将用户IP转发给后端服务器)
--add-module=../ngx_cache_purge-2.3 # 添加缓存清除扩展模块
# make
# make install
我们来设定一个cache日志的格式,就可以通过日志中查看到,是否访问缓存的“MISS”和“HIT”两种状态
log_format cache '***$time_local ' '***$upstream_cache_status ' '***Cache-Control: $upstream_http_cache_control ' '***Expires: $upstream_http_expires ' '***"$request" ($status) ' '***"$http_user_agent" ';
其次设定缓存参数
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;
#注:temp_path和cache_path 指定的路径必须在同一分区
proxy_temp_path/cache/temp_dir;
#设置Web缓存区名称为cache_one,内存缓存空间大小为200MB,1天没有被访问的内容自动清除,硬盘缓存空间大小为10GB。
proxy_cache_path /cache/cache levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=10g;
#设定一个upstream
upstream myserver {
server 192.168.1.50;
}
#用于清除缓存,假设一个URL为http://192.168.10.1/world.txt,通过访问http://192.168.10.1/purge/world.txt就可以清除该URL的缓存。
此功能需要手动编译模块ngx_cache_purge,
本例中为2.3。
location ~ /purge(/.*) {
#设置只允许指定的IP或IP段才可以清除URL缓存。
allow 127.0.0.1;
allow 192.168.1.0/104;
deny all;
proxy_cache_purge cache_one $host$1$is_args$args;
}
#注意,此规则必须放于purge之后,因为放之前就会优先匹配到此规则,会在清除缓存的时候报404错误。
location ~ .*\.(gif|jpg|png|htm|html|css|js|flv|ico|swf)(.*) {
proxy_pass http://appserver;
proxy_redirect off;
#以域名、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_cache cache_one;
#对不同的HTTP状态码设置不同的缓存时间
proxy_cache_valid 200 302 1h;
proxy_cache_valid 301 1d;
proxy_cache_valid any 1m;
expires 30d;
#可以再cache.log日志中看到 MISS和HIT状态
access_log/usr/local/nginx/logs/cache.log cache;
}
配置完成,重新启动nginx,
./nginx -s stop
./nginx
随便访问一个页面http://192.168.10.1/100.jpg,
在/cache/cache下面也会生成相应的缓存文件查看cache.log,可以看到第一次访问为MISS,第二次为HIT
***19/Mar/2014:10:48:16 +0800 ***MISS ***Cache-Control: - ***Expires: - ***"GET /100.jpg HTTP/1.1" (200) ***
#命中内存(第二次访问)
***19/Mar/2014:10:48:37 +0800 ***HIT ***Cache-Control: - ***Expires: - ***"GET /100.jpg HTTP/1.1" (304) ***
清除缓存
访问 http://192.168.10.3/purge/9.jpg,
看到如下信息说明缓存已被清除。
Successful purge
Key : 192.168.10.1/100.jpg
Path: /cache/cache/4/c1/9959863996c9f7891f8b2c94c16
./configure \
--prefix=/usr/local/nginx-1.0.6 \ # 安装路径
--with-http_stub_status_module \ # 启用nginx状态模块
--with-http_ssl_module \ # 启用SSL模块
--with-http_realip_module \ # 启用realip模块(将用户IP转发给后端服务器)
--add-module=../ngx_cache_purge-2.3 # 添加缓存清除扩展模块
# make
# make install
我们来设定一个cache日志的格式,就可以通过日志中查看到,是否访问缓存的“MISS”和“HIT”两种状态
log_format cache '***$time_local ' '***$upstream_cache_status ' '***Cache-Control: $upstream_http_cache_control ' '***Expires: $upstream_http_expires ' '***"$request" ($status) ' '***"$http_user_agent" ';
其次设定缓存参数
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;
#注:temp_path和cache_path 指定的路径必须在同一分区
proxy_temp_path/cache/temp_dir;
#设置Web缓存区名称为cache_one,内存缓存空间大小为200MB,1天没有被访问的内容自动清除,硬盘缓存空间大小为10GB。
proxy_cache_path /cache/cache levels=1:2 keys_zone=cache_one:200m inactive=1d max_size=10g;
#设定一个upstream
upstream myserver {
server 192.168.1.50;
}
#用于清除缓存,假设一个URL为http://192.168.10.1/world.txt,通过访问http://192.168.10.1/purge/world.txt就可以清除该URL的缓存。
此功能需要手动编译模块ngx_cache_purge,
本例中为2.3。
location ~ /purge(/.*) {
#设置只允许指定的IP或IP段才可以清除URL缓存。
allow 127.0.0.1;
allow 192.168.1.0/104;
deny all;
proxy_cache_purge cache_one $host$1$is_args$args;
}
#注意,此规则必须放于purge之后,因为放之前就会优先匹配到此规则,会在清除缓存的时候报404错误。
location ~ .*\.(gif|jpg|png|htm|html|css|js|flv|ico|swf)(.*) {
proxy_pass http://appserver;
proxy_redirect off;
#以域名、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_cache cache_one;
#对不同的HTTP状态码设置不同的缓存时间
proxy_cache_valid 200 302 1h;
proxy_cache_valid 301 1d;
proxy_cache_valid any 1m;
expires 30d;
#可以再cache.log日志中看到 MISS和HIT状态
access_log/usr/local/nginx/logs/cache.log cache;
}
配置完成,重新启动nginx,
./nginx -s stop
./nginx
随便访问一个页面http://192.168.10.1/100.jpg,
在/cache/cache下面也会生成相应的缓存文件查看cache.log,可以看到第一次访问为MISS,第二次为HIT
***19/Mar/2014:10:48:16 +0800 ***MISS ***Cache-Control: - ***Expires: - ***"GET /100.jpg HTTP/1.1" (200) ***
#命中内存(第二次访问)
***19/Mar/2014:10:48:37 +0800 ***HIT ***Cache-Control: - ***Expires: - ***"GET /100.jpg HTTP/1.1" (304) ***
清除缓存
访问 http://192.168.10.3/purge/9.jpg,
看到如下信息说明缓存已被清除。
Successful purge
Key : 192.168.10.1/100.jpg
Path: /cache/cache/4/c1/9959863996c9f7891f8b2c94c16
推荐阅读
-
nginx缓存模块ngx_cache_purge配置 博客分类: nginx cachenginx
-
nginx根据域名配置虚拟主机 博客分类: nginx nginx
-
实现基于nginx的tomcat负载均衡和集群配置 博客分类: 实战技术 nginxtomcatmemcached
-
linux下nginx安装,启动,停止,卸载,平滑升级,添加模块 博客分类: nginx nginx安装启动停止添加模块
-
nginx性能优化配置长连接 博客分类: nginx nginx性能优化长连接
-
nginx上传模块下载安装 博客分类: nginx nginx上传upload
-
Nginx配置SSI 博客分类: nginx nginxssi
-
Nginx 开启 stub_status 模块监控 博客分类: nginx nginxnginx-statusstub_status监控
-
Nginx+Tomcat配置多个二级域名 博客分类: 服务器nginx nginxtomcat二级域名
-
nginx配置详解(备忘篇) 博客分类: centos操作系统 nginxnginx配置