Nginx系列教程:ngx_cache_purge模組

-編譯-人生-發表於2015-12-17

轉自:http://www.ithov.com/linux/116779.shtml

ngx_cache_purge

本模組由第三方提供,不包含在 Nginx 的原始碼釋出版中。

概述

ngx_cache_purge是nginx模組,用於從FastCGI、proxy、SCGI 和uWSGI快取中增加內容清除功能。

安裝

下載模組原始碼:ngx_cache_purge-1.2(更新記錄)
(SHA1: d9468cf42432e81ea3a110ec63aae2eb273f5516)

其他版本

解壓,然後編譯:

./configure
make && make install

配置指令

 fastcgi_cache_purge zone_name key (context: location)

使用area and key設定 FastCGI快取的所選清除頁面。

 proxy_cache_purge zone_name key (context: location)

使用area and key設定proxy快取的所選清除頁面。

 scgi_cache_purge zone_name key (context: location)

使用area and key設定SCGI快取的所選清除頁面。

 uwsgi_cache_purge zone_name key (context: location)

使用area and key設定uWSGI快取的所選清除頁面。

 示例配置

http {
    proxy_cache_path  /tmp/cache  keys_zone=tmpcache:10m;

    server {
        location / {
            proxy_pass         http://127.0.0.1:8000;
            proxy_cache        tmpcache;
            proxy_cache_key    $uri$is_args$args;
        }

        location ~ /purge(/.*) {
            allow              127.0.0.1;
            deny               all;
            proxy_cache_purge  tmpcache $1$is_args$args;
        }
    }
}


相關文章