Update fusionpbx

This commit is contained in:
FusionPBX 2020-01-07 21:49:05 -07:00 committed by GitHub
parent 1f4f9b061b
commit 36ed2be462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 9 deletions

View File

@ -41,9 +41,12 @@ server {
location ~^.+.(db)$ {
deny all;
}
location ~ /.git/ {
deny all;
}
location ~ /\.git {
deny all;
}
location ~ /\. {
deny all;
}
}
server {
@ -155,9 +158,12 @@ server {
location ~^.+.(db)$ {
deny all;
}
location ~ /.git/ {
deny all;
}
location ~ /\.git {
deny all;
}
location ~ /\. {
deny all;
}
}
server {
@ -269,7 +275,10 @@ server {
location ~^.+.(db)$ {
deny all;
}
location ~ /.git/ {
deny all;
}
location ~ /\.git {
deny all;
}
location ~ /\. {
deny all;
}
}