我有一个配置我的Nginx + php-fpm 我做了nginx缓存 在http部分
fastcgi_cache_path /var/cache/nginx/ levels=1:2 keys_zone=nginx_webpy_cache:1m inactive=1d;
fastcgi_temp_path /var/cache/nginx/temp;
在服务器部分
set $no_cache 0;
if ($request_method = POST)
{
set $no_cache 1;
}
#Don't cache if the URL contains a query string
if ($query_string != "")
{
set $no_cache 1;
}
#Don't cache the following URLs
if ($request_uri ~* "/(api/|login|logout|corporate/login|corporate/logout)")
{
set $no_cache 1;
}
#Don't cache if there is a cookie called PHPSESSID
if ($http_cookie = "PHPSESSID")
{
set $no_cache 1;
}
location ~ \.php$ {
fastcgi_cache_bypass $no_cache;
fastcgi_no_cache $no_cache;
fastcgi_pass php-fpm;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /srv/www/site/index.php;
include fastcgi_params;
try_files $fastcgi_script_name =404;
fastcgi_cache nginx_webpy_cache;
fastcgi_cache_valid 200 301 302 304 2m;
fastcgi_cache_key "$request_method|$http_if_modified_since|$http_if_none_match|$host|$request_uri|$cookie_login_id";
fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
fastcgi_hide_header "Set-Cookie";
}
location ~* \.(ico|js|txt|jpg|jpeg|png|css|pdf)$ {
root /srv/www/site;
access_log off;
expires 1h;
add_header Pragma public;
add_header Cache-Control "public";
}
大部分工作正常,但我无法退出,我退出并仍然喜欢登录用户,如何解决?
答案 0 :(得分:0)
不幸的是,在大多数情况下,您无法通过服务器HTTP缓存来验证身份验证下的任何页面。例如,在尝试访问自己的个人资料时,用户只会看到其他人的网页(除非您的网址真的与众不同,这通常也不是最佳做法)。
解决方案是使用片段缓存,有关Yii特定教程,请参阅here。