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:
parent
4da512e535
commit
cd0580614f
1 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
||||||
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||||||
location ^~ __PATH__/ {
|
location __PATH__/ {
|
||||||
|
|
||||||
# Path to source
|
# Path to source
|
||||||
alias __INSTALL_DIR__/;
|
alias __INSTALL_DIR__/;
|
||||||
|
@ -33,27 +33,27 @@ location ^~ __PATH__/ {
|
||||||
}
|
}
|
||||||
|
|
||||||
## disable all access to the following directories
|
## disable all access to the following directories
|
||||||
location ^~ __PATH__/config/ {
|
location ~ ^__PATH__/config/ {
|
||||||
deny all;
|
deny all;
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ __PATH__/tmp/ {
|
location ~ ^__PATH__/tmp/ {
|
||||||
deny all;
|
deny all;
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ __PATH__/core/ {
|
location ~ ^__PATH__/core/ {
|
||||||
deny all;
|
deny all;
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ __PATH__/lang/ {
|
location ~ ^__PATH__/lang/ {
|
||||||
deny all;
|
deny all;
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ __PATH__/\.ht {
|
location ~ ^__PATH__/\.ht {
|
||||||
deny all;
|
deny all;
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
@ -78,7 +78,7 @@ location ^~ __PATH__/ {
|
||||||
}
|
}
|
||||||
|
|
||||||
## properly display textfiles in root directory
|
## properly display textfiles in root directory
|
||||||
location ~__PATH__/(.*\.md|LEGALNOTICE|LICENSE) {
|
location ~ ^__PATH__/(.*\.md|LEGALNOTICE|LICENSE) {
|
||||||
default_type text/plain;
|
default_type text/plain;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue