changeset 1185:f9c8336fe43c

Aligned configuration examples with fastcgi/scgi_cache_purge.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 08 May 2014 22:32:42 +0400
parents 55857cbf562d
children 8125bec5c7a1
files xml/en/docs/http/ngx_http_fastcgi_module.xml xml/en/docs/http/ngx_http_scgi_module.xml xml/ru/docs/http/ngx_http_fastcgi_module.xml xml/ru/docs/http/ngx_http_scgi_module.xml
diffstat 4 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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;
     }
 }
--- 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;
     }
 }
--- 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;
     }
 }
--- 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;
     }
 }