NGINX가 새 정적 파일을로드하도록하려면 어떻게합니까?


22

최근에 사이트에 대한 주요 업데이트를 추진했으며 일부 사람들이 브라우저에서 오래된 자바 스크립트 파일을 로드하기 때문에 로그인 할 수없는 문제가 있습니다. 내가 한 일 중 일부는 다음과 같습니다.

  • 모든 자바 스크립트 파일을 캐시하는 캐시
  • sendfile offnginx.conf에서 설정
  • expires 1smysite.conf에서 설정
  • 명시 적으로 캐시 제어 헤더를 설정하십시오. 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와 함께 전송되지 않은 경우 브라우저는 객체의 버전이 여전히 몇 가지 버전에 대해 유효한 것으로 간주 할 수 있습니다 서버를 참조하지 마십시오.


정답입니다. 사용자는 이미 캐시 된 버전을 가지고 있으며 304가없는 경우 수정했는지 확인하면 모든 사용자가 사이트 데이터를 강제로 새로 고치거나 모든 정적 콘텐츠의 이름을 바꾸거나 이동해야합니다. 정적 컨텐츠를 다른 폴더로
Brunis

0

대부분의 클라이언트는 캐시 된 버전을 가지고 있으며 서버에서 수정되었는지 확인하지 않습니다. 따라서 캐시 설정을 수정 한 다음 다른 폴더로 이동할 수 있습니다. 예 : 대신 /styles/*.css를 / css /로 옮기고 모든 js 파일을 스크립트에서 / js /로 옮기면 브라우저에서 리소스를 다시 가져와야합니다.


0

같은 문제에 직면했다. DDOS 보호를 위해 cloudflare를 사용하는 경우 (그렇지 않은 경우 수행)

  • 잠시 동안 개발자 모드.
  • 항상 정적 파일 결과를 시크릿 (Google 크롬)이라고하는 시크릿 창에서 확인하십시오.
  • nginx 중지> 캐시 삭제> nginx 서비스 시작
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.