Apache 白名单反向代理

发布于 2024-07-09 03:19:51 字数 123 浏览 9 评论 0原文

我们这里有一个反向代理,运行 Apache 2.2.x 版本 本质上,我想创建一个白名单,以便只有有效的 URL 才会通过代理并由 Web 服务器处理。 如何在 Apache 配置文件中执行此操作,或者是否需要使用 SQUID?

We have a reverse proxy here, running Apache in version 2.2.x
Essentially I want to create a whitelist so that only valid URLs will go through the proxy and be processed by the web server.
How do you do this in the Apache config file, or do you need to use SQUID?

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

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

发布评论

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

评论(1

人生百味 2024-07-16 03:19:51

创建一个包含所有有效 url 的文本文件并将其用作 RewriteMap。

# /tmp/bar.txt:
# /blah.cgi good
# /bar.cgi bad

RewriteMap foo /foo/bar.txt

RewriteCond ${foo:%{REQUEST_URI}} ^good$
RewriteRule ^/(.*)$ proxy:http://foobackend/$1

Create a text file with all of the valid urls and use it as a RewriteMap.

# /tmp/bar.txt:
# /blah.cgi good
# /bar.cgi bad

RewriteMap foo /foo/bar.txt

RewriteCond ${foo:%{REQUEST_URI}} ^good$
RewriteRule ^/(.*)$ proxy:http://foobackend/$1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文