Nginx 配置 HTTP 強緩存

server {
    listen       80;
    server_name  tirion.me www.tirion.me;

    # note that these lines are originally from the "location /" block
    root   /home/www/wordpress;
    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ =404;
    }
    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
    # 配置 HTTP 強緩存靜態文件,經過 Response Header 頭返回
    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$ {
        expires 3d;
    }
}

上面經過 Response Header 通知瀏覽器將 gif|jpg|jpeg|png|bmp|swf|js|css 文件緩存3天php

瀏覽器訪問後再 Response Header 中能夠看到css

Cache-Control: max-age=31536000
這些文件就不會再從服務器從新獲取,而是直接從瀏覽器的緩存中獲取,從而提升網絡性能。
相關文章
相關標籤/搜索