1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pluxml_ynh.git synced 2024-09-03 20:16:02 +02:00

fix add_header warning with package_check

This commit is contained in:
antoine 2019-12-18 15:55:49 +01:00
parent 72a8768447
commit 8da3f53ee2

View file

@ -49,19 +49,19 @@ location __PATH__/ {
# Cache-control
location ~ ^__PATH__/data/ {
add_header Cache-Control public;
more_set_headers Cache-Control public;
expires 12h;
}
location ~ ^__PATH__/core/ {
add_header Cache-Control public;
more_set_headers Cache-Control public;
expires 12h;
}
location ~ ^__PATH__/plugins/ {
add_header Cache-Control public;
more_set_headers Cache-Control public;
expires 12h;
}
location ~ ^__PATH__/themes/ {
add_header Cache-Control public;
more_set_headers Cache-Control public;
expires 12h;
}