ฉันจะบังคับให้ NGINX โหลดไฟล์คงที่ใหม่ได้อย่างไร


22

ฉันเพิ่งผลักการอัปเดตที่สำคัญไปยังไซต์และฉันมีปัญหาที่บางคนไม่สามารถเข้าสู่ระบบได้เนื่องจากเบราว์เซอร์ของพวกเขากำลังโหลดไฟล์จาวาสคริปต์เก่า บางสิ่งที่ฉันทำรวมถึง:

  • แคชใช้งานไฟล์จาวาสคริปต์ทั้งหมด
  • ตั้งเป็นsendfile offnginx.conf
  • ตั้งอยู่expires 1sใน mysite.conf
  • ตั้งค่าส่วนหัวของ Cache-Control อย่างชัดเจน: add_header Cache-Control no-cache;

ร้องเป็นไฟล์ conf ของฉันสำหรับ nginx ความช่วยเหลือใด ๆ ที่จะได้รับการชื่นชมมาก

/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 เบราว์เซอร์อาจพิจารณาว่าวัตถุรุ่นนี้ยังคงใช้ได้สำหรับสองสาม Decennia และอย่าปรึกษาเซิร์ฟเวอร์ของคุณ


นี่คือคำตอบที่ถูกต้องผู้ใช้มีเวอร์ชันแคชอยู่แล้วและถ้าคุณไม่มี 304 - ตรวจสอบว่ามีการแก้ไขหรือไม่คุณต้องบังคับให้ผู้ใช้ทุกคนบังคับให้รีเฟรชข้อมูลไซต์ของคุณหรือเปลี่ยนชื่อเนื้อหาคงที่ทั้งหมดหรือย้าย เนื้อหาสแตติกของคุณไปยังโฟลเดอร์อื่น
Brunis

0

ลูกค้าของคุณส่วนใหญ่มีรุ่นแคชและพวกเขาไม่ตรวจสอบว่าพวกเขามีการปรับเปลี่ยนบนเซิร์ฟเวอร์ของคุณ ดังนั้นคุณต้องแก้ไขการตั้งค่าแคชของคุณจากนั้นคุณสามารถย้ายการตั้งค่าไปยังโฟลเดอร์อื่น เช่น. หากคุณย้าย /styles/*.css ไปยัง / css / แทนและไฟล์ js ทั้งหมดจากสคริปต์ไปยัง / js / เบราว์เซอร์ของพวกเขาจะต้องดึงทรัพยากร


0

ประสบปัญหาเดียวกัน หากคุณใช้ cloudflare สำหรับการป้องกัน DDOS (ถ้าไม่ใช่โปรดทำ) จากนั้นเปิดใช้งาน

  • โหมดนักพัฒนาชั่วขณะหนึ่ง
  • ตรวจสอบผลลัพธ์ไฟล์สแตติกของคุณทุกครั้งในหน้าต่างที่ไม่ระบุตัวตน (ใน Google Chrome ที่เรียกว่าเป็น)
  • หยุดการ nginx> ลบแคช> เริ่มบริการ nginx
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.