Deny access to /system directory in nginx config

This commit is contained in:
tobi132 2019-12-02 19:43:36 +01:00
parent 9b04dc0e44
commit 11727785c7

View File

@ -17,4 +17,9 @@ server {
location ~ /\.ht {
deny all;
}
location /system {
deny all;
return 404;
}
}