Как минимум, в вашем случае определение сроков кеширования надо делать внутри location, а зоны кеширования внутри server:

server {

fastcgi_cache mycache;
fastcgi_cache_key $scheme$host$request_uri$request_method;

location/aaa/  {
                fastcgi_cache_valid 200 301 302 5m;
                rewrite ^/aaa/([0-9]+)\.html$ /test.php?p1=$1 last;
}

location/bbb/  {
                fastcgi_cache_valid 200 301 302 10m;
                rewrite ^/bbb/([0-9]+)\.html$ /test2.php?p1=$1 last;
}

location ~ \.php$ {
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME 
$document_root$fastcgi_script_name;
                include fastcgi_params;
}
}



02.03.13 12:58, Namaste пишет:
В том то и дело, что так просто оно не работает.

например:

server {

fastcgi_cache_valid 200 301 302 10s;

location /aaa/ {
rewrite ^/aaa/([0-9]+)\.html$ /test.php?p1=$1 last;
}

location /bbb/ {
rewrite ^/bbb/([0-9]+)\.html$ /test2.php?p1=$1 last;
}

location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_cache mycache;
fastcgi_cache_key $scheme$host$request_uri$request_method;
#fastcgi_cache_valid 200 301 302 60m;
}
}

Так кэш вообще не включается.

Posted at Nginx Forum: 
http://forum.nginx.org/read.php?21,236809,236814#msg-236814

_______________________________________________
nginx-ru mailing list
nginx-ru@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-ru

--
Pavel Mironov

_______________________________________________
nginx-ru mailing list
nginx-ru@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-ru

Ответить