Questions tagged «deny»

4
如何限制对目录和子目录的访问
我需要限制访问目录“ testdir”中的任何文件或子目录。我的conf: ... location ~* ^.+\.(jpg|txt)$ { root /var/www/site; } location /testdir { deny all; return 404; } ... 在我的配置中,我对/ testdir / jpg_or_txt-files没有任何限制。怎么做?
42 nginx  rewrite  deny 

4
拒绝AWS ELB上的IP地址
我或多或少地在AWS上进行了以下配置: 弹性负载均衡器,具有3台机器或3个不同的可用区。我的安全组允许使用0.0.0.0/0:80,因为它是我的Rails应用程序(nginx,独角兽)。 我想知道是否有任何方法可以拒绝我的应用程序访问特定的公共IP地址?我一直在阅读AWS文档,但是由于SG是“拒绝所有”,因此无法仅拒绝一个特定IP地址。 有任何想法吗?在负载均衡器后面的3台机器上的iptables? 谢谢!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.