Update nginx sample config with location deny for bin/ folder

Dieser Commit ist enthalten in:
Hypolite Petovan 2020-09-07 05:51:58 -04:00
Ursprung 06632536f3
Commit ae045eff41
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen

Datei anzeigen

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