NGINXに新しい静的ファイルをロードさせるにはどうすればよいですか?


22

最近、サイトにメジャーアップデートをプッシュしましたが、ブラウザが古い javascriptファイルをロードしているためにログインできない人がいるという問題があります。私がやったことのいくつかは次のとおりです。

  • すべてのjavascriptファイルをキャッシュするキャッシュ
  • sendfile offnginx.confで設定
  • expires 1smysite.confで設定
  • Cache-Controlヘッダーを明示的に設定します。 add_header Cache-Control no-cache;

以下は、nginxのconfファイルです。どんな助けでも大歓迎です。

/etc/nginx/sites-enabled/mysite.conf

proxy_cache_path  /var/cache/nginx levels=1:2 keys_zone=one:8m max_size=3000m inactive=600m;

server {
    listen 80;
    server_name mysite.com;
    return 301 https://www.mysite.com$request_uri;
}

server {

        # listen for connections on all hostname/IP and at TCP port 80
        listen *:80;

        # name-based virtual hosting
        server_name www.mysite.com;

        # location of the web root for all static files (this should be changed for local development)
        root /var/mysite.com/static;

        # redirect http requests to https
        if ($http_x_forwarded_proto = "http") {
            rewrite  ^/(.*)$  https://www.mysite.com/$1 permanent;
        }

        # error pages
        error_page 403 /errors/403.html;
        error_page 404 /errors/404.html;
        error_page 408 /errors/408.html;
        error_page 500 502 503 504 /errors/500.html;  

        # error and access out
        error_log /var/log/nginx/error.mysite.log;
        access_log /var/log/nginx/access.mysite.log;

        # use Nginx's gzip static module
        gzip_static on;
        gzip_types application/x-javascript text/css;

        location / {

            # redefine and add some request header lines which will be passed along to the node server
            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-NginX-Proxy true;
            proxy_set_header X-Forwarded-Proto $scheme;

            # set the address of the node proxied server
            proxy_pass http://127.0.0.1:9001;

            # forbid all proxy_redirect directives at this level
            proxy_redirect off;
        }

        # do a regular expression match for any files ending in the list of extensions

        location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|xml|html|htm)$ {

            # clear all access_log directives for the current level
            access_log off;
            add_header Cache-Control no-cache;
            # set the Expires header to 31 December 2037 23:59:59 GMT, and the Cache-Control max-age to 10 years
            expires 1s;
        }

}

/etc/nginx/nginx.conf

user www-data;
worker_processes 4;
pid /var/run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile off;
    tcp_nopush off;
    tcp_nodelay off;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

回答:


18

キャッシュ内のすべてを手動で削除しようとしましたか?これは通常/var/cache/nginxです。

私が持つと信じているadd_header Cache-Control no-cache;セットがキャッシュされてから物事を維持する必要がありますが、おそらくあなたは、あなたがそれを設定する前に、そこにキャッシュされた何かを持っていますか?


2
それは良い考えです。キャッシュファイルを削除しようとしました/var/cache/nginxが、完全に空です
-jwerre

14

expires -1;ロケーションブロック内に設定すると、実際にはキャッシュが完全に無効になります。


7

読者のブラウザのキャッシュを無視しています。オブジェクトの名前を変更する(たとえば、.jsにバージョン番号を追加する)か、オブジェクトがETagまたはModification-Dateで送信された場合を除き、ブラウザーは、オブジェクトのバージョンがまだ2、3日間有効であると見なす場合がありますそして、決してあなたのサーバーに相談しないでください。


これは正しい答えです。ユーザーは既にキャッシュバージョンを持っています。304を持っていない場合は、すべてのユーザーにサイトデータの更新を強制するか、すべての静的コンテンツの名前を変更するか、静的コンテンツを別のフォルダーに追加します。
ブルニス

0

クライアントがキャッシュバージョンを持っている可能性が高く、サーバー上で変更されているかどうかをチェックしません。そのため、キャッシュ設定を修正する必要があります。その後、別のフォルダーに移動できます。例えば。代わりに/styles/*.cssを/ css /に移動し、スクリプトからすべてのjsファイルを/ js /に移動すると、ブラウザーはリソースを再取得する必要があります。


0

同じ問題に直面した。DDOS保護にcloudflareを使用している場合(そうでない場合は実行してください)、有効にします

  • しばらくの間、開発者モード。
  • 常に静的ファイルの結果をシークレット(Google Chromeで、いわゆる)ウィンドウで確認してください。
  • nginxの停止>キャッシュの削除> nginxサービスの開始。
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.