首页 > 网站 > Nginx > 正文

使用Nginx作缓存服务器以及删除其缓存文件的方法

2024-08-30 12:27:47
字体:
来源:转载
供稿:网友

这篇文章主要介绍了使用Nginx作缓存服务器以及删除其缓存文件的方法,作cache时需要注意一下磁盘的IO瓶颈,需要的朋友可以参考下

使用nginx做cache服务器

需求就是缓存android的软件包,后缀名是apk。话不多说,直接上配置,供参考:

 

 
  1. a-->nginx.conf 
  2. user www www; 
  3. worker_processes 8; 
  4. error_log /data/logs/nginx_error.log crit; 
  5. pid /usr/local/nginx/nginx.pid; 
  6. worker_rlimit_nofile 204800; 
  7.  
  8. events 
  9. use epoll; 
  10. worker_connections 204800; 
  11.  
  12. http 
  13. include mime.types; 
  14. #apk 文件类型 
  15. #default_type application/vnd.android.package-archive; 
  16. default_type application/octet-stream; 
  17.  
  18. charset utf-8; 
  19.  
  20. server_names_hash_bucket_size 128; 
  21. client_header_buffer_size 2k; 
  22. large_client_header_buffers 4 4k; 
  23. client_max_body_size 8m; 
  24.  
  25. sendfile on; 
  26. tcp_nopush on; 
  27.  
  28. keepalive_timeout 60; 
  29. open_file_cache max=204800 inactive=20s; 
  30. open_file_cache_min_uses 1; 
  31. open_file_cache_valid 30s; 
  32.  
  33.  
  34.  
  35. tcp_nodelay on; 
  36. client_body_buffer_size 512k; 
  37.  
  38. #跟后端服务器连接的超时时间_发起握手等候响应超时时间 
  39. proxy_connect_timeout 600; 
  40. #连接成功后_等候后端服务器响应的时间_其实已经进入后端的排队之中等候处理 
  41. proxy_read_timeout 600; 
  42. #后端服务器数据回传时间_就是在规定时间内后端服务器必须传完所有数据 
  43. proxy_send_timeout 600; 
  44. #代理请求缓存区_这个缓存区间会保存用户的头信息以供Nginx进行规则处理_一般只要能保存下头信息即可 
  45. proxy_buffer_size 16k; 
  46. #同上 告诉Nginx保存单个用的几个Buffer最大用多大空间 
  47. proxy_buffers 4 64k; 
  48. #如果系统很忙的时候可以申请更大的proxy_buffers 官方推荐*2 
  49. proxy_busy_buffers_size 128k; 
  50. #proxy缓存临时文件的大小 
  51. proxy_temp_file_write_size 128k; 
  52.  
  53. gzip on; 
  54. gzip_proxied expired no-cache no-store private auth; 
  55. gzip_min_length 1k; 
  56. gzip_buffers 4 16k; 
  57. gzip_http_version 1.1; 
  58. gzip_comp_level 3; 
  59. gzip_types text/plain application/x-javascript text/css application/xml; 
  60. gzip_disable "MSIE [1-6]/."
  61. gzip_vary on; 
  62.  
  63. #log_format access '$remote_addr - $remote_user [$time_local] ' 
  64. # '"$request" $status $body_bytes_sent ' 
  65. # '"$http_referer" "$http_user_agent" ' 
  66. # '$host $request_time $http_x_forwarded_for'; 
  67. #access_log /data/logs/http.a.log; 
  68. #error_log /data/logs/http.e.log; 
  69.  
  70. include vhosts/cache.peiqiang.net.conf; 
  71.  
  72. upstream source_site { 
  73. server 192.168.1.1:80 weight=7 max_fails=2 fail_timeout=30s; 
  74. server 192.168.1.2:80 weight=4 max_fails=2 fail_timeout=30s; 
  75.  
  76. b-->cache.peiqiang.net.conf 
  77. #用于指定本地目录来缓冲较大的代理请求 
  78. proxy_temp_path /data/soft/temp; 
  79. #设置web缓存区名为cache_one,内存缓存空间大小为12000M,自动清除超过15天没有被访问过的缓存数据,硬盘缓存空间大小200g 
  80. proxy_cache_path /data/soft/cache levels=1:2 keys_zone=cache_one:12000m inactive=15d max_size=200g; 
  81.  
  82. server { 
  83. listen 80; 
  84. server_name cache.peiqiang.net; 
  85. access_log /data/logs/a.log; 
  86. error_log /data/logs/e.log notice; 
  87.  
  88. # PHP Scripts is NOT allowed within this site! 
  89. location ~* /.(php|php5|jsp|asp|aspx)$ { 
  90. deny all; 
  91.  
  92.  
  93. location / { 
  94.  
  95. proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header; 
  96. proxy_cache cache_one; 
  97. proxy_cache_valid 200 304 12h; 
  98. proxy_cache_key $uri$is_args$args; 
  99.  
  100. #反向代理,访问后端内容源服务器 
  101. proxy_set_header Host $host; 
  102. proxy_set_header X-Forwarded-For $remote_addr; 
  103. proxy_pass http://source_site; 
  104.  
  105. location ~* .*/.(apk)$ { 
  106. error_page 302 404 = @fallback; 
  107.  
  108. #如果后端的服务器返回500、502、503、504执行超时等错误、自动将请求转发到upstream负载均衡池中的另一台服务器,实现故障转移 
  109. proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header; 
  110.  
  111. #使用web缓存区cache_one 
  112. proxy_cache cache_one; 
  113.  
  114. #对不同的HTTP状态码缓存设置不同的缓存时间 
  115. proxy_cache_valid 200 304 12h; 
  116.  
  117. #设置Web缓存的Key值,Nginx根据Key值md5哈希存储缓存,这里根据"域名、URI、参数"组合成key 
  118. proxy_cache_key $uri$is_args$args; 
  119.  
  120.  
  121. #反向代理,访问后端内容源服务器 
  122. proxy_set_header Host $host; 
  123. proxy_set_header X-Forwarded-For $remote_addr; 
  124. proxy_pass http://source_site; 
  125. expires 1d; 
  126.  
  127. location @fallback { 
  128. rewrite ^ $scheme://apke.peiqiang.net$uri redirect; 
  129. expires -1; 

说明:其实按这个配置location /这个匹配是多余的,因为过来一个后缀名为apk的软件包location ~* .*/.(apk)$已经给匹配上了,不会再到location /了,不过由于我们还会缓存些其他后缀名的文件,所以location /就是必须的。

 

 
  1. c-->/etc/rc.local 
  2. #!/bin/sh 
  3. # 
  4. # This script will be executed *after* all the other init scripts. 
  5. # You can put your own initialization stuff in here if you don't 
  6. # want to do the full Sys V style init stuff. 
  7.  
  8. touch /var/lock/subsys/local 
  9. ulimit -HSn 65535 
  10. /usr/local/nginx/sbin/nginx 

删除nginx缓存文件

一:脚本

a shell版

 

 
  1. #!/bin/bash 
  2.  
  3. #Date: 2013-06-27 
  4. #Auther: budong 
  5.  
  6. ####################################################### 
  7. #说明: 
  8. # 1.本脚本用于清除nginx缓存文件 
  9. # 2.查看你的nginx是根据什么作为key来hash的,我的设置是 proxy_cache_key $uri$is_args$args; 
  10. # 因此nginx会根据$uri$is_args$args作为key进行hash,因此可以模拟nginx对一个key进行再 
  11. # hash找到相应的文件路径,删除(具体可随意找个缓存文件 more 一下看看) 
  12. # 3.缓存设置 proxy_cache_path /data/mumayi/cache levels=1:2 keys_zone=cache_one:6000m inactive=15d max_size=200g; 
  13. # 根据相应的配置,请做相应修改测试 
  14. # 4.uri格式请按照同级目录下rm_apk_list.txt中填写 
  15. ##################################################### 
  16.  
  17. while read -r line 
  18. do 
  19. md5uri=`echo -n $line | md5sum | awk '{ print $1 }'
  20. filepath=`echo "$md5uri" | awk '{print "/data/mumayi/cache/"substr($0,length($0),1)"/"substr($0,length($0)-2,2)"/"$0}'
  21. rm -rf $filepath 
  22. done < /root/sbin/rm_apk_list.txt 
  23. b python版 
  24.  
  25. #!/usr/local/python2.7/bin/python2.7 
  26. # -*- coding:utf8 -*- 
  27.  
  28. #Date: 2013-06-26 
  29. #Name: budong 
  30.  
  31. ''
  32. 说明: 
  33. 1.本脚本用于清除nginx缓存文件 
  34. 2.查看你的nginx是根据什么作为key来hash的,我的设置是 proxy_cache_key $uri$is_args$args; 
  35. 因此nginx会根据$uri$is_args$args作为key进行hash,因此可以模拟nginx对一个key进行再 
  36. hash找到相应的文件路径,删除(具体可随意找个缓存文件 more 一下看看) 
  37. 3.缓存设置 proxy_cache_path /data/mumayi/cache levels=1:2 keys_zone=cache_one:6000m inactive=15d max_size=200g; 
  38. 根据相应的配置,请做相应修改测试 
  39. 4.uri格式请按照同级目录下rm_apk_list.txt中填写 
  40. ''
  41. import os 
  42. import sys 
  43. try
  44. from hashlib import md5 
  45. except: 
  46. from md5 import md5 
  47.  
  48. reload( sys ) 
  49. sys.setdefaultencoding('utf-8'
  50.  
  51. PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__)) 
  52. URI_FILE = ''.join([PROJECT_ROOT,'/rm_apk_list.txt']) 
  53.  
  54. def nginx_purge(uri): 
  55. m = md5() 
  56. m.update("%s" % uri) 
  57. md5uri=m.hexdigest() 
  58. md5uri_len=len(md5uri) 
  59. dir1=md5uri[md5uri_len-1:] 
  60. dir2=md5uri[md5uri_len-3:md5uri_len-1] 
  61. file_path=("/data/mumayi/cache/%s/%s/%s" % (dir1, dir2, md5uri)) 
  62. if os.path.exists(file_path): 
  63. os.remove(file_path) 
  64.  
  65. with open("%s" % URI_FILE,'r') as uri_file: 
  66. for line in uri_file: 
  67. line = line.rstrip() 
  68. nginx_purge(line) 

c ngx_cache_purge不做考虑,据说已经停止开发了

说明:

1 我的 /root/sbin/rm_apk_list.txt 文件

 

  
  1. [root@budong ~]# cat /root/sbin/rm_apk_list.txt  
  2. /2013/08/15/38/382272/shuazanzhushou_V1.8.16_mumayi_95a91.apk 

2 查看一个缓存对象,应该有些明白了吧

 

 
  1. [root@budong ~]# more /data/mumayi/cache/0/00/db9327b60a6b3c164516117f90d9d000  

?

  1. KEY: /2013/10/23/43/432816/dinuochongwuDinoPets_V1.1.1_mumayi_0b399.apk 
  2. HTTP/1.1 200 OK 
  3. Server: nginx/1.2.6 
  4. Date: Sun, 15 Dec 2013 19:51:22 GMT 
  5. Content-Type: application/vnd.android.package-archive 
  6. Content-Length: 37466293 
  7. Connection: close 
  8. Last-Modified: Wed, 23 Oct 2013 06:15:06 GMT 
  9. Expires: Wed, 18 Dec 2013 17:35:07 GMT 
  10. Cache-Control: max-age=604800 
  11. Accept-Ranges: bytes 

1

2

3

4

5

6

7

8

9

10

11

 

 



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表