Как минимум, в вашем случае определение
сроков кеширования надо делать внутри 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 пишет: