我正在寻找动态白名单的解决方案,因此不需要重启apache2服务。我试图做这样的事情:
order Deny,Allow include conf/IPList.conf Allow from all
但是此解决方案无法正确地为我工作。我也试过了,但是我不确定我的whitelist.txt是否正确。看起来如何?
## WHITELIST IPS ## RewriteMap ipslist txt:/path/to/whitelist.txt RewriteCond %{REMOTE_ADDR} ^(.*)$ RewriteCond ${ipslist:%1|black} ^black$ [NC] RewriteRule (.*) - [F]
或者,也许还有另一种更好的方法为Apache2制作动态白名单?