NGINX 启用静态缓存内容时网站无法加载静态文件

NGINX 启用静态缓存内容时网站无法加载静态文件

我有一个运行 CentOS 和 NGINX/PHP-FPM 的 VPS。一切正常,除非我添加以下几行来启用静态缓存内容。如果我这样做,页面不会加载指定保留缓存的那些文件。

   location ~* \.(ico|css|js|gif|jpg|jpeg|png)$ {
        expires 30d;
        add_header Vary Accept-Encoding;
        access_log off;
   }

这是我的整个服务器{}:

server {
    listen        80;
    server_name  mywebsite.com www.mywebsite.com;

   #location ~* \.(ico|css|js|gif|jpg|jpeg|png)$ {
   #     expires 30d;
   #     add_header Vary Accept-Encoding;
   #     access_log off;
   #}

    location / {
        if ($http_host ~* "^www.(.*)$"){
            set $rule_0 1$rule_0;
            set $bref_1 $1;
        }
        if ($rule_0 = "1"){
           rewrite ^/(.*)$ http://$bref_1/$1 permanent;
        }
        rewrite ^/search/(.*)/(.*)/?$ /index.php?search=$1&page=$2&type=mp3 las$
        rewrite ^/(.*)/(.*)/(.*)?$ /index.php?search=$1&page=$2&type=$3 last;
        root   /var/www/mywebsite.com/public_html;
        index  index.php index.html index.htm;
    }

    location ~ \.php$ {
        fastcgi_read_timeout 300;
        root           /var/www/mywebsite.com/public_html;
        fastcgi_pass unix:/tmp/php5-fpm.sock;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

有人知道为什么吗?

已更新(解决方案):

正如 Michael Hampton 回答我的那样,服务器{} 尚未声明根,因此我按照说明将其添加到文件中。工作正常!

答案1

您的server块中没有root定义指令。相反,它似乎在您的某个块中location。这是其中之一最常见的 nginx 错误. 将其移至server块下。

相关内容