[Nginx] Deny inc/lib location

This commit is contained in:
andryyy 2021-08-08 16:06:26 +02:00
parent 6db004bc79
commit eec75690e0
No known key found for this signature in database
GPG Key ID: 8EC34FF2794E25EF

View File

@ -88,6 +88,11 @@
return 301 /SOGo/dav;
}
location ^~ /inc/lib/ {
deny all;
return 403;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;