允许 Lighttpd 中某些 IP 的目录访问

发布于 2024-12-06 00:13:43 字数 325 浏览 0 评论 0原文

我需要重写此规则(来自 apache 的 .htaccess):

<files "*.*">
Allow from 84.47.125.0/19 66.211.160.0/19 216.113.160.0/19
Deny from All
</files>

对于 lighttpd,仅允许那些 IP 访问我的 /pswd 目录:

84.47.125.0/19, 66.211.160.0/19, 216.113.160.0/19

我怎样才能在 lighttpd 中做到这一点?

I need to rewrite this rules (from apache's .htaccess):

<files "*.*">
Allow from 84.47.125.0/19 66.211.160.0/19 216.113.160.0/19
Deny from All
</files>

To lighttpd ones, to allow the access to my /pswd directory only for those IP's:

84.47.125.0/19, 66.211.160.0/19, 216.113.160.0/19

How can I do that in lighttpd?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2024-12-13 00:13:44

我从未使用过 lighttpd,但我在 Google 上找到了这个:
http://www.cyberciti。 biz/tips/lighttpd-restrict-or-deny-access-by-ip-address.html

它有一个阻止 2 个 IP 和阻止单个 IP 访问的示例。通过执行以下操作,它应该可以轻松地适应您:

# vi /etc/lighttpd/lighttpd.conf

然后:

$HTTP["remoteip"] !~ "84.47.125.0/19|66.211.160.0/19|216.113.160.0/19" {
    $HTTP["url"] =~ "^/pswd/" {
      url.access-deny = ( "" )
    }
 }

I've never used lighttpd but I've found this on Google:
http://www.cyberciti.biz/tips/lighttpd-restrict-or-deny-access-by-ip-address.html

It has an example for blocking access for 2 IPs and for blocking a single IP. It should be easily adaptable for you by doing this:

# vi /etc/lighttpd/lighttpd.conf

and then:

$HTTP["remoteip"] !~ "84.47.125.0/19|66.211.160.0/19|216.113.160.0/19" {
    $HTTP["url"] =~ "^/pswd/" {
      url.access-deny = ( "" )
    }
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文