我需要限制访问目录“ testdir”中的任何文件或子目录。我的conf:
...
location ~* ^.+\.(jpg|txt)$ {
root /var/www/site;
}
location /testdir {
deny all;
return 404;
}
...
在我的配置中,我对/ testdir / jpg_or_txt-files没有任何限制。怎么做?
请注意,以我的经验,仅当在Linux上运行nginx时,定位功能才能正常工作。在Windows上运行时,我们遇到了无法正常工作的麻烦……
—
samsmith