nginx 静态文件不记录日志和过期时间

静态文件不记录日志和过期时间

  • /usr/local/nginx/conf/vhost/test01.conf 增加配置如下 
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
    {
          expires      7d; #有效时间
          access_log off; #关闭日志
    }
location ~ .*\.(js|css)$
    {
          expires      12h;
          access_log off;
    }

posted on 2018-01-04 10:31  游荡的鱼  阅读(368)  评论(0编辑  收藏  举报

导航