Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
location, rewrite и fastcgi cache
- To: nginx-ru@xxxxxxxxx
- Subject: location, rewrite и fastcgi cache
- From: "zosia" <nginx-forum@xxxxxxxx>
- Date: Thu, 23 Dec 2010 16:09:12 -0500
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=WfOBpkoUUMPkpEN65Bzu3NVpVlzjObo7dSQZ8gHE19Q=; b=QiC+K4IaoqzVTsA/YM92PQtOMrFdQkovofGGeug7xu7rbrO/Dk09DA77oyUg9ECYjsN7gRniPPm295gG9Zhw9yAkSIQSncWkHvQ1wx3TzZy3tt6ccybzsVu8byP6hD0X;
Извиняюсь за глупый вопрос, но не могу
понять вроде бы простую вещь..
В конфиге у меня прописаны реврайты
для location'ов
[code]
location /sections {
rewrite ^/sections/some/page/(.*)$
/index.php?sections=true&id=$1&page=$2;
rewrite ^/sections/some/(.*)$ /index.php?sections=true&id=$1;
rewrite ^/sections$ /index.php?sections=true;
}
location / {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/var/www/directory$fastcgi_script_name;
include fastcgi_params;
}
[/code]
Так вот вопрос такой:
Как закешировать только директорию
"sections" со всеми реврайтами, переменными,
а всё остальное не трогать?
Т.е. как отправить переменные индексу,
но кешировать только эту директорию
(sections)?
[code]
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME
/var/www/directory$fastcgi_script_name;
fastcgi_cache one;
fastcgi_cache_valid any 3m;
fastcgi_pass_header Cookie;
fastcgi_cache_key 127.0.0.1:9000$http_host$request_uri;
fastcgi_cache_use_stale error timeout invalid_header
http_500;
include fastcgi_params;
[/code]
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,160848,160848#msg-160848
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|