Configuring nginx web caching time

 
Configuring nginx web caching time
Edit the main configuration file
vim /usr/local/nginx/conf/nginx.conf
next add a server LOCATION
LOCATION ~ * \ (GIF | JPG | PNG | BMP | ICO) {$.
 Expires 1D; # set the cache time
}
LOCATION ~ . * \ (CSS | JS) $ {
 the Expires 1H; # set the cache time
}

Guess you like

Origin www.cnblogs.com/990114-jhc/p/11540395.html