Enable Browser Caching with NGINX

Posted Friday 19 June 2015 by Urs Riggenbach.

server
listen 80;

location /

expires 30d;
add_header Pragma public;
add_header Cache-Control "public";