web-dev-qa-db-ja.com

nginxでキャッシュを有効にする

CentOS 6とnginxを備えた独自のVPSがあり、キャッシュを有効にしたい。テストするには、それが正常に有効化されている場合、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

3
Peter

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;
    #}
}
4
Tero Kilkanen