我在Ubuntu 12.04上有Nginx 1.4.1和PHP 5.5.7。 Nginx使用必要的附加功能进行编译。我已经设置了fastcgi_cache并将Wordpress安装为测试站点。我也在使用Nginx Helper plugin用于WP。我尝试调试时已经将配置文件缩减为基本要素.fastcgi_cache似乎正在工作,因为我创建了一个输出时间的php文件并将其称为几个来自CURL的时间,每次显示相同的输出。缓存位置也填充文件,并在清除时清空。
什么行不通,我已经尝试了我能想到的每一个配置,是“add_header X-Cache $ upstream_cache_status;”当添加到nginx.conf的HTTP块时,它应该添加“X-Cache = HIT或MISS,或BYPASS等等。我根本无法显示它。我已经检查过其他服务器了知道正在使用这个缓存并且标题确实显示出来。我可以继续并忽略它但是我想知道为什么有些东西不起作用,以防更多的事情发生,以免它后来再次咬我。
我想这可能是一个真正的错误,但我找不到任何参考。关于这方面的信息很少,所以我转向大脑信任 - 任何想法?配置文件如下。仅供参考,我尝试将add_header行放在服务器块和位置块中以确保 - 没有乐趣。
example.com.vhost
fastcgi_cache_path /etc/nginx/cache levels=1:2 keys_zone=MYAPP:100m inactive=60m;
fastcgi_cache_key "$scheme$request_method$host$request_uri";
add_header X-Cache $upstream_cache_status;
server {
listen 80;
server_name ~^(?:www\.)?(?P<example.com>.+)$ ;
root /srv/www/$domain/htdocs;
index index.php
server_name example.com;
location / {
try_files $uri $uri/ /index.html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_cache MYAPP;
fastcgi_cache_valid 200 60m;
}
}
nginx.conf
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}