gpt4 book ai didi

Apache - 限制 IP 不起作用

转载 作者:行者123 更新时间:2023-12-02 13:42:46 24 4
gpt4 key购买 nike

我有一个子域,我只想在内部访问;我试图通过编辑该域的 VirtualHost block 来在 Apache 中实现此目的。有人能看出我哪里出错了吗?注意,我这里的内部IP地址是192.168.10.xxx。我的代码如下:

<VirtualHost *:80>
ServerName test.example.co.uk
DocumentRoot /var/www/test
ErrorLog /var/log/apache2/error_test_co_uk.log
LogLevel warn
CustomLog /var/log/apache2/access_test_co_uk.log combined
<Directory /var/www/test>
Order allow,deny
Allow from 192.168.10.0/24
Allow from 127
</Directory>
</VirtualHost>

谢谢

最佳答案

您缺少 Deny from all 行吗?哦,还有使用了错误的顺序

引用mod_access docs :

[...] all hosts in the apache.org domain are allowed access; all other hosts are denied access.

Order Deny,Allow
Deny from all
Allow from apache.org

关于Apache - 限制 IP 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2683347/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com