ansible-nginx/templates/etc/nginx/helpers/static-expires.j2

11 lines
142 B
Plaintext
Raw Normal View History

2015-07-15 20:18:51 +07:00
#
# {{ ansible_managed }}
#
location ~* \.(txt|js|css|png|jpg|jpeg|gif|ico|svg)$ {
expires 30d;
log_not_found off;
}
# vim:filetype=nginx