1

我已经在我的 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;

在站点可用/默认中:

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。我需要添加什么才能使其缓存?

4

0 回答 0