防止 nginx 中的符号链接路径



我在ngx.conf中有一个位置路径。我想阻止下载任何符号链接路径。

我的 nginx 路径

位置 ~ ^/home/(.*( $ {

}

现在,所有文件都从路径下载。我想阻止符号链接下载。

location ~ ^/home/(.*) $ {
disable_symlinks on;
...
}

最新更新