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;
}
}