Update nginx sample config with location deny for bin/ folder

Cette révision appartient à :
Hypolite Petovan 2020-09-07 05:51:58 -04:00
Parent 06632536f3
révision ae045eff41
1 fichiers modifiés avec 5 ajouts et 0 suppressions

Voir le fichier

@ -141,4 +141,9 @@ server {
location ~ /\. {
deny all;
}
# deny access to the CLI scripts
location ^~ /bin {
deny all;
}
}