将 Apache 正向代理限制为远程 URL 集

将 Apache 正向代理限制为远程 URL 集

是否有一种强大的方法可以将 Apache 正向代理限制到一组远程 URL?

现在我可以看到具有多个相同块的唯一解决方案<Proxy "...">是:

<Proxy "http://example1.com">
...
</Proxy>
<Proxy "http://example2.com">
...
</Proxy>
<Proxy "http://example3.com">
...
</Proxy>

——那是不合适的。

谢谢您的任何提示。

相关内容