Skip to content

Instantly share code, notes, and snippets.

@rcanepa
Last active January 31, 2017 23:41
Show Gist options
  • Save rcanepa/2716874cf0b9112b43d69c9cc1b61402 to your computer and use it in GitHub Desktop.
Save rcanepa/2716874cf0b9112b43d69c9cc1b61402 to your computer and use it in GitHub Desktop.
# Expires map
map $sent_http_content_type $expires {
default off;
text/html epoch;
text/css max;
application/javascript max;
~image/ max;
}
server {
listen 80 default_server;
expires $expires;
root /var/www/back;
index index.html;
server_name back.office.cl;
location / {
try_files $uri $uri/ =404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment