Nginx 的使用過程當中問題總結

注:後續遇到問題會持續更新。。。。。nginx

Nginx 錯誤一

在啓動 Nginx 的時候,有時候會遇到這樣的一個錯誤:後端

[emerg]: could not build the proxy_headers_hash, you should increase either proxy_headers_hash_max_size: 512 or proxy_headers_hash_bucket_size: 64

解決辦法就是在配置文件中新增如下配置項:緩存

proxy_headers_hash_max_size 51200;
proxy_headers_hash_bucket_size 6400;

這兩個配置項的 size 根據系統後端發送的 header 來進行設置。curl

注:默認值的話,就會上面出現上面那樣出現錯誤ui

Nginx 緩存刷新問題

在使用 Nginx 的過程當中,由於 Nginx 本地使用了緩存,而後發佈了靜態資源後, CDN 回源的時候,發現沒有正常回源,通過查詢發現,是由於 Nginx 本地有緩存,而有沒有對緩存進行刷新的緣由,要刷新本地緩存,能夠安裝 Purge 模塊。url

Nginx 的緩存設置:code

location /
      {
       proxy_cache cache_go;
       proxy_cache_valid 200 304 1d;
       proxy_cache_key $host$uri$is_args$args;
       proxy_set_header Host  $host;
       proxy_set_header X-Forwarded-For  $remote_addr;
       proxy_pass http://127.0.0.1:8800;
       expires      3024010s;

       }

       location ~ /purge(/.*)
       {
        #設置只容許指定的IP或IP段才能夠清除URL緩存。
        allow            127.0.0.1;
        deny             all;
        proxy_cache_purge    cache_go   $host$1$is_args$args;
       }

Purge 模塊是用來清除緩存的,首先下載安裝 Puerge 模塊。ip

下載 Purge 模塊:ssl

wget http://labs.frickle.com/files/ngx_cache_purge-1.2.tar.gz

解壓:資源

tar -zxvf ngx_cache_purge-1.2.tar.gz

再編譯前先使用以下命令查看 nginx 的編譯選項:

/home/nginx/sbin/nginx -V
nginx version: xxxx
TLS SNI support enabled
configure arguments: --prefix=/home/nginx-1.2.8 --with-pcre=../pcre-8.31 --with-zlib=../zlib-1.2.3 --with-openssl=../openssl-1.0.0d --with-http_ssl_module --with-http_stub_status_module --without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module --add-module=../ngx_cache_purge-1.5 --add-module=../perusio-nginx-http-concat-321e344 --add-module=../ngx_http_vipshop_hostname_filter --with-ld-opt=-static

上面個人編譯顯示有 puerge 模塊,是由於我已經編譯過了,而後在原有的編譯參數後面加上:

--add-module=/home/ngx_cache_purge-1.5

退出 Nginx ,並從新啓動:

./nginx -s quit
./nginx

配置 Puerge :

location ~ /purge(/.*)
       {
        #設置只容許指定的IP或IP段才能夠清除URL緩存。
        allow            127.0.0.1;
        deny             all;
        proxy_cache_purge    cache_go   $host$1$is_args$args;
       }

清楚 Nginx 緩存的方式,好比你的 url 是 http://test.com/test/test.js
那清除該 js 緩存的命令即爲:

curl http://test.com/purge/test/test.js

通用的方式就是:

curl http://test.com/purge/uri

其中 uri 就是你的 URL 「http://test.com/test/test.js」 的 「test/test.js」 部分。

相關文章
相關標籤/搜索