Update nginx sample config with location deny for bin/ folder

This commit is contained in:
Hypolite Petovan 2020-09-07 05:51:58 -04:00
부모 06632536f3
커밋 ae045eff41
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

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