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

67 lines
2 KiB
Nginx Configuration File
Raw Normal View History

2018-10-30 10:25:13 +01:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
2021-05-17 22:43:01 +02:00
location __PATH__/ {
2018-10-30 10:25:13 +01:00
2021-05-17 22:37:53 +02:00
# Path to source
alias __FINALPATH__/;
2018-10-30 10:25:13 +01:00
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
2021-05-17 22:46:37 +02:00
more_set_headers "Referrer-Policy: origin always";
2021-05-17 22:16:06 +02:00
more_set_headers "X-Content-Type-Options: nosniff";
more_set_headers "X-XSS-Protection: 1; mode=block";
2021-05-17 22:37:53 +02:00
index index.php;
2021-05-17 22:16:06 +02:00
2021-05-17 22:37:53 +02:00
## only allow accessing the following php files
location ~ ^/(index|matomo|piwik|js/index|plugins/HeatmapSessionRecording/configs)\.php$ {
fastcgi_param HTTP_PROXY ""; # prohibit httpoxy: https://httpoxy.org/
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock; #replace with the path to your PHP socket file
}
2018-10-30 10:25:13 +01:00
## deny access to all other .php files
location ~* ^.+\.php$ {
deny all;
return 403;
}
2021-05-17 22:37:53 +02:00
try_files $uri $uri/ =404;
## disable all access to the following directories
2021-05-17 22:16:06 +02:00
location ~ ^__PATH__/(config|tmp|core|lang) {
deny all;
2021-05-17 22:37:53 +02:00
return 403; # replace with 404 to not show these directories exist
}
2021-05-17 22:37:53 +02:00
location ~ __PATH__/\.ht {
2021-05-17 18:27:27 +02:00
deny all;
return 403;
}
location ~ js/container_.*_preview\.js$ {
expires off;
2021-05-17 22:46:37 +02:00
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)$ {
allow all;
## 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
expires 1h;
2021-05-17 22:43:01 +02:00
more_set_headers "Pragma: public";
more_set_headers "Cache-Control: public";
}
2021-05-17 22:37:53 +02:00
location ~ ^__PATH__/(libs|vendor|plugins|misc|node_modules) {
deny all;
return 403;
}
## properly display textfiles in root directory
2021-05-17 22:37:53 +02:00
location ~/(.*\.md|LEGALNOTICE|LICENSE) {
default_type text/plain;
}
2018-10-30 10:25:13 +01:00
}