[enh] Short cache on handlebars templates

Backported from https://github.com/YunoHost/yunohost-config-nginx/pull/5
This commit is contained in:
opi 2015-11-24 11:22:01 +01:00
parent 23354e92bc
commit 032f9c86ed

View file

@ -2,4 +2,10 @@ location /yunohost/admin {
alias /usr/share/yunohost/admin/;
default_type text/html;
index index.html;
# Short cache on handlebars templates
location ~* \.(?:ms)$ {
expires 5m;
add_header Cache-Control "public";
}
}