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:
parent
72a8768447
commit
8da3f53ee2
1 changed files with 4 additions and 4 deletions
|
@ -49,19 +49,19 @@ location __PATH__/ {
|
||||||
|
|
||||||
# Cache-control
|
# Cache-control
|
||||||
location ~ ^__PATH__/data/ {
|
location ~ ^__PATH__/data/ {
|
||||||
add_header Cache-Control public;
|
more_set_headers Cache-Control public;
|
||||||
expires 12h;
|
expires 12h;
|
||||||
}
|
}
|
||||||
location ~ ^__PATH__/core/ {
|
location ~ ^__PATH__/core/ {
|
||||||
add_header Cache-Control public;
|
more_set_headers Cache-Control public;
|
||||||
expires 12h;
|
expires 12h;
|
||||||
}
|
}
|
||||||
location ~ ^__PATH__/plugins/ {
|
location ~ ^__PATH__/plugins/ {
|
||||||
add_header Cache-Control public;
|
more_set_headers Cache-Control public;
|
||||||
expires 12h;
|
expires 12h;
|
||||||
}
|
}
|
||||||
location ~ ^__PATH__/themes/ {
|
location ~ ^__PATH__/themes/ {
|
||||||
add_header Cache-Control public;
|
more_set_headers Cache-Control public;
|
||||||
expires 12h;
|
expires 12h;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue