LNMP--nginx 配置静态文件过期时间

2018-02-13

LNMP--nginx 配置静态文件过期时间

  把指定文件类型不记录日志和该功能一起配置。

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$

    {

        expires    30d;

        access_log off;

    }

    location ~ .*\.(js|css)$

    {

        expires    12h;

        access_log off;

    }

标题:LNMP--nginx 配置静态文件过期时间
作者:散宜生
地址:https://17kblog.com/articles/2018/02/13/1518498883733.html