我已经在我的nginx服务器上配置了基本缓存,但是当我转到缓存存储文件夹时,没有可见的缓存文件。这是我的配置:
在nginx.conf中:
proxy_cache_path /usr/share/nginx/www/cache levels=1:2 keys_zone=my-cache:8m max_size=1000m inactive=600m;
proxy_temp_path /usr/share/nginx/www/cache/tmp;
在sites-available / default中:
upstream app_mydomain {
server 127.0.0.1:3000;
}
server {
listen 80;
server_name mydomain.com;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NninX-Proxy true;
proxy_pass http://app_mydomain/;
proxy_redirect off;
proxy_cache my-cache;
}
}
缓存目录的权限为700,所有者为www-data。我需要添加什么才能获得缓存?