forked from extern/egroupware
return 404 instead of 403 for accessing PHP in blacklisted folders and remove doublicate SCRIPT_FILENAME
This commit is contained in:
parent
c88bf3c4a0
commit
97e332e809
@ -34,7 +34,7 @@ server {
|
||||
location ~ ^/egroupware(/(?U).+\.php) {
|
||||
# do not allow to call files ment to be included only
|
||||
#location ~ ^$path/(vendor|[^/]+/(src|setup|inc))/ {
|
||||
# return 403;
|
||||
# return 404;
|
||||
#}
|
||||
alias /var/www/egroupware;
|
||||
fastcgi_pass fpm;
|
||||
@ -42,7 +42,6 @@ server {
|
||||
fastcgi_read_timeout 60m;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_split_path_info ^((?U).+\.php)(.*)$;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
||||
# standard Nginx
|
||||
|
@ -43,7 +43,7 @@ server {
|
||||
location ~ ^/egroupware(/(?U).+\.php) {
|
||||
# do not allow to call files ment to be included only
|
||||
location ~ ^$path/(vendor|[^/]+/(src|setup|inc))/ {
|
||||
return 403;
|
||||
return 404;
|
||||
}
|
||||
alias /usr/share/egroupware;
|
||||
fastcgi_pass fpm;
|
||||
@ -51,7 +51,6 @@ server {
|
||||
fastcgi_read_timeout 60m;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_split_path_info ^((?U).+\.php)(.*)$;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
||||
# standard Nginx
|
||||
|
@ -40,13 +40,16 @@ server {
|
||||
alias /usr/share/egroupware/;
|
||||
try_files $uri $uri/ =404;
|
||||
location ~ ^/egroupware(/(?U).+\.php) {
|
||||
# do not allow to call files ment to be included only
|
||||
location ~ ^/egroupware/(vendor|[^/]+/(src|setup|inc))/ {
|
||||
return 404;
|
||||
}
|
||||
alias /usr/share/egroupware;
|
||||
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
|
||||
# added to support WebDAV/CalDAV/CardDAV
|
||||
fastcgi_read_timeout 60m;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_split_path_info ^((?U).+\.php)(.*)$;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
|
||||
# standard Nginx
|
||||
|
Loading…
Reference in New Issue
Block a user