1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/matomo_ynh.git synced 2024-09-03 19:45:56 +02:00

Update nginx.conf

This commit is contained in:
ericgaspar 2021-05-17 22:43:01 +02:00
parent 6e1c4906b4
commit 51892c3a7c
No known key found for this signature in database
GPG key ID: 574F281483054D44

View file

@ -1,5 +1,5 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
server __PATH__/{ location __PATH__/ {
# Path to source # Path to source
alias __FINALPATH__/; alias __FINALPATH__/;
@ -42,7 +42,7 @@ server __PATH__/{
location ~ js/container_.*_preview\.js$ { location ~ js/container_.*_preview\.js$ {
expires off; expires off;
add_header Cache-Control 'private, no-cache, no-store'; more_set_headers "Cache-Control: private, no-cache, no-store"'";
} }
location ~ \.(gif|ico|jpg|png|svg|js|css|htm|html|mp3|mp4|wav|ogg|avi|ttf|eot|woff|woff2|json)$ { location ~ \.(gif|ico|jpg|png|svg|js|css|htm|html|mp3|mp4|wav|ogg|avi|ttf|eot|woff|woff2|json)$ {
@ -50,8 +50,8 @@ server __PATH__/{
## Cache images,CSS,JS and webfonts for an hour ## Cache images,CSS,JS and webfonts for an hour
## Increasing the duration may improve the load-time, but may cause old files to show after an Matomo upgrade ## Increasing the duration may improve the load-time, but may cause old files to show after an Matomo upgrade
expires 1h; expires 1h;
add_header Pragma public; more_set_headers "Pragma: public";
add_header Cache-Control "public"; more_set_headers "Cache-Control: public";
} }
location ~ ^__PATH__/(libs|vendor|plugins|misc|node_modules) { location ~ ^__PATH__/(libs|vendor|plugins|misc|node_modules) {