配置nginx网页缓存时间
编辑主配置文件
vim /usr/local/nginx/conf/nginx.conf
server下添加一个location
location ~* \.(gif|jpg|png|bmp|ico)$ {
 expires 1d;  #设置缓存时间
}
location ~* \.(css|js)$ {
 expires 1h;  #设置缓存时间
}

相关文章:

  • 2021-05-21
  • 2022-01-30
  • 2021-11-11
  • 2021-06-24
  • 2021-04-06
  • 2021-08-28
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-11
  • 2021-08-29
  • 2021-08-29
  • 2021-10-07
  • 2021-07-12
相关资源
相似解决方案