# HG changeset patch # User Ruslan Ermilov # Date 1399573962 -14400 # Node ID f9c8336fe43c9622b0b92b05521aed3081e967f6 # Parent 55857cbf562dd0daccb31f348a6bb5469b54370e Aligned configuration examples with fastcgi/scgi_cache_purge. diff --git a/xml/en/docs/http/ngx_http_fastcgi_module.xml b/xml/en/docs/http/ngx_http_fastcgi_module.xml --- a/xml/en/docs/http/ngx_http_fastcgi_module.xml +++ b/xml/en/docs/http/ngx_http_fastcgi_module.xml @@ -405,9 +405,9 @@ map $request_method $purge_method { server { ... location / { - fastcgi_pass backend; - fastcgi_cache cache_zone; - fastcgi_cache_key $uri; + fastcgi_pass backend; + fastcgi_cache cache_zone; + fastcgi_cache_key $uri; fastcgi_cache_purge $purge_method; } } diff --git a/xml/en/docs/http/ngx_http_scgi_module.xml b/xml/en/docs/http/ngx_http_scgi_module.xml --- a/xml/en/docs/http/ngx_http_scgi_module.xml +++ b/xml/en/docs/http/ngx_http_scgi_module.xml @@ -395,9 +395,9 @@ map $request_method $purge_method { server { ... location / { - scgi_pass backend; - scgi_cache cache_zone; - scgi_cache_key $uri; + scgi_pass backend; + scgi_cache cache_zone; + scgi_cache_key $uri; scgi_cache_purge $purge_method; } } diff --git a/xml/ru/docs/http/ngx_http_fastcgi_module.xml b/xml/ru/docs/http/ngx_http_fastcgi_module.xml --- a/xml/ru/docs/http/ngx_http_fastcgi_module.xml +++ b/xml/ru/docs/http/ngx_http_fastcgi_module.xml @@ -403,9 +403,9 @@ map $request_method $purge_method { server { ... location / { - fastcgi_pass http://backend; - fastcgi_cache cache_zone; - fastcgi_cache_key $uri; + fastcgi_pass http://backend; + fastcgi_cache cache_zone; + fastcgi_cache_key $uri; fastcgi_cache_purge $purge_method; } } diff --git a/xml/ru/docs/http/ngx_http_scgi_module.xml b/xml/ru/docs/http/ngx_http_scgi_module.xml --- a/xml/ru/docs/http/ngx_http_scgi_module.xml +++ b/xml/ru/docs/http/ngx_http_scgi_module.xml @@ -394,9 +394,9 @@ map $request_method $purge_method { server { ... location / { - scgi_pass http://backend; - scgi_cache cache_zone; - scgi_cache_key $uri; + scgi_pass http://backend; + scgi_cache cache_zone; + scgi_cache_key $uri; scgi_cache_purge $purge_method; } }