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

88 lines
2.1 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-26 10:12:13 +02:00
location ^~ __PATH__/ {
2018-10-30 10:25:13 +01:00
2022-06-18 18:16:35 +02:00
# Path to source
Testing (#100) * 4.11.0 * Auto-update README * Upgrade to php8 (#82) * Auto-update README * [autopatch] Add Common Platform Enumeration id to `manifest.json` (#81) * Testing (#80) * 4.11.0 * Auto-update README Co-authored-by: yunohost-bot <yunohost@yunohost.org> * [autopatch] Add Common Platform Enumeration id to `manifest.json` Co-authored-by: yalh76 <yalh@yahoo.com> Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> * Auto-update README * Auto-update README * Update manifest.json * Auto-update README * fix upgrade : Missing phpversion var definition, later used around line 117 * Update upgrade * Add php config (#85) * Update manifest.json * Auto-update README * 4.12.0 (#87) * 4.12.0 * Auto-update README Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update install * 4.12.1 * Auto-update README * 4.12.2 * Auto-update README * 4.12.3 * Auto-update README * PHP setup * 4.13.1 * Auto-update README * 4.13.2 * Auto-update README * 4.13.3 * Auto-update README * V2 (#99) * v2 * v2 * Fix * Auto-update README * Update manifest.toml * fix * Auto-update README * Update tests.toml * Auto-update README * Update manifest.toml * Update POST_INSTALL_fr.md * Fix * Auto-update README * fix * Update tests.toml * Update manifest.toml * Auto-update README * Update doc/POST_INSTALL.md Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org> * Update upgrade * fix --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org> * Update upgrade * fix * Update manifest.toml * Auto-update README * Update manifest.toml * Fix * Update install * fix --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: yalh76 <yalh@yahoo.com> Co-authored-by: Alexandre Aubin <alex.aubin@mailoo.org>
2023-03-20 22:36:23 +01:00
alias __INSTALL_DIR__/;
2018-10-30 10:25:13 +01:00
2021-05-26 10:12:13 +02:00
more_set_headers "Referrer-Policy: origin always";
more_set_headers "X-Content-Type-Options: nosniff";
more_set_headers "X-XSS-Protection: 1; mode=block";
more_set_headers "Access-Control-Allow-Origin: *";
2021-05-26 10:12:13 +02:00
2018-10-30 10:25:13 +01:00
index index.php;
2022-06-18 18:16:35 +02:00
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
client_max_body_size 50M;
2018-10-30 10:25:13 +01:00
2022-06-18 18:16:35 +02:00
try_files $uri $uri/ =404;
2018-10-30 10:25:13 +01:00
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2020-05-31 00:00:08 +02:00
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
2018-10-30 10:25:13 +01:00
fastcgi_index index.php;
include fastcgi_params;
2022-06-18 18:16:35 +02:00
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
2018-10-30 10:25:13 +01:00
fastcgi_param SCRIPT_FILENAME $request_filename;
2022-06-18 18:16:35 +02:00
}
## deny access to all other .php files
location ~* ^.+\.php$ {
deny all;
return 403;
}
## disable all access to the following directories
location ^~ __PATH__/config/ {
deny all;
return 403;
}
location ^~ __PATH__/tmp/ {
deny all;
return 403;
}
location ^~ __PATH__/core/ {
deny all;
return 403;
}
location ^~ __PATH__/lang/ {
deny all;
return 403;
}
location ~ __PATH__/\.ht {
deny all;
return 403;
}
location ~ js/container_.*_preview\.js$ {
expires off;
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;
more_set_headers "Pragma: public";
more_set_headers "Cache-Control: public";
}
location ~ ^__PATH__/(libs|vendor|plugins|misc|node_modules) {
deny all;
return 403;
}
## properly display textfiles in root directory
location ~__PATH__/(.*\.md|LEGALNOTICE|LICENSE) {
default_type text/plain;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
2018-10-30 10:25:13 +01:00
}