在 nginx 上启用缓存

在 nginx 上启用缓存

我有自己的 VPS,装有 CentOS 6 和 nginx,我想启用缓存。为了测试它,如果成功启用,我会使用 Google PageSpeed Insight。我的问题是,我没有太多经验,不知道在哪里必须启用缓存,在哪里可以设置图像的缓存时间等等。这是我在互联网上找到并尝试过的:

  1. 创建目录:/etc/nginx/sites-available因为/etc/nginx/sites-enabled它们不知为何不存在。
  2. 在此处链接创建的目录:在文件末尾但在最后一个之前/etc/nginx/nginx.conf添加include /etc/nginx/sites-enabled/*;}
  3. 创建文件/etc/nginx/sites-available/my-site.com.conf

    server {
    listen       80;
    server_name  localhost;
    
    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }
    
    location ~*  \.(jpg|jpeg|png|gif|ico|css|js)$ {
        expires 15d;
    }
    
    location ~*  \.(pdf)$ {
        expires 30d;
    }
    

    }

  4. 链接conf文件:ln -s /etc/nginx/sites-available/my-site.com.conf /etc/nginx/sites-enabled/my-site.com.conf

  5. service nginx restart

我使用 WordPress 作为我的网站。

因此,每当我使用 PageSpeed Insight 或其他 pagespeed 工具测试我的页面时,它都会说我没有对 header.png、javascript 等使用缓存。但我没有收到一些错误,即使我检查配置文件,它也会nginx -t显示以下内容:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

我是不是忘记了什么事?

这是我的完整 nginx 配置:http://pastebin.com/wxnzzePT

来自default.conf文件夹conf.dhttp://pastebin.com/KUH2tSrD

答案1

您需要将缓存指令添加到您的default.conf文件中,并删除您创建的新文件。

您的新文件仅在用户使用 访问网站时使用http://localhost。此外,您的新文件配置使用与您的default.conf文件不同的路径。

此外,块root内的指令location是不好的做法。

因此,你的default.conf表现应该是这样的:

#
# The default server
#
server {
    listen       80 default_server;
    server_name  213.165.xx.xx;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    root   /var/www/wordpress;

    location / {
        index  index.html index.htm index.php;

        try_files $uri $uri/ /index.php?q=$request_uri;

    }

    location ~*  \.(jpg|jpeg|png|gif|ico|css|js)$ {
        expires 15d;
    }

    location ~*  \.(pdf)$ {
        expires 30d;
    }

    location /admin {
        auth_basic "Administrator Login";
        auth_basic_user_file /var/www/admin/.htpasswd;
    }

    #!!! IMPORTANT !!! We need to hide the password file from prying eyes
    # This will deny access to any hidden file (beginning with a .period)
    location ~ /\. { deny  all; }

    error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/html;
    }

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }


    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           /var/www/wordpress;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

相关内容