Nginx系列教程:ngx_cache_purge模組
轉自: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;
}
}
}
相關文章
- Thrift RPC 系列教程(3)——模組化RPC
- Nginx 新增 lua 模組Nginx
- 為 Nginx 新增模組Nginx
- Nginx常用的模組Nginx
- Angular入門到精通系列教程(11)- 模組(NgModule),延遲載入模組Angular
- odoo 開發入門教程系列-模組互動Odoo
- Nginx安裝nginx-rtmp-module模組Nginx
- nginx學習之模組Nginx
- 《Python 簡明教程》讀書筆記系列三 —— 模組Python筆記
- Nginx使用SSL模組配置httpsNginxHTTP
- Nginx原始碼研究之nginx限流模組詳解Nginx原始碼
- Nginx為已安裝nginx動態新增模組Nginx
- Python教程-6模組Python
- Nginx使用Lua模組實現WAFNginx
- nginx使用熱部署新增新模組Nginx熱部署
- Tengine新增nginx upstream模組的使用Nginx
- nginx事件模組 -- 第二篇Nginx事件
- nginx事件模組-- 第四篇Nginx事件
- nginx事件模組 -- 第三篇Nginx事件
- Python模組、第三方模組安裝、模組匯入教程Python
- Nginx的HTTP模組與Stream模組:區別與應用場景NginxHTTP
- Nginx 學習筆記--程式與模組Nginx筆記
- CentOS 下重新編譯 nginx 新增模組CentOS編譯Nginx
- Centos下安裝FastDFS及Nginx模組CentOSASTNginx
- Nginx 架構——【核心流程+模組介紹】Nginx架構
- nginx事件模組 -- 第一篇Nginx事件
- Nginx的ngx_http_fastcgi_module模組NginxHTTPAST
- Nginx 學習總結(4)—— Rewrite 模組Nginx
- [NodeJs系列]NodeJs模組機制NodeJS
- Linux下玩轉nginx系列(八)---如何使用upsync模組實現動態負載均衡LinuxNginx負載
- Nginx 學習筆記--程式與模組(二)Nginx筆記
- nginx學習-ngx_http_rewrite_module模組NginxHTTP
- nginx事件模組 -- 第五篇 epoll addNginx事件
- Nginx通過geo模組設定白名單Nginx
- SAP PM 入門系列14 – PM模組與其它模組的整合
- Node.js 系列 - 模組機制Node.js
- [kubernetes系列]HPA模組深度講解
- Node.js 系列 – 模組機制Node.js
- Python中yaml模組的使用教程PythonYAML