设置带有身份验证的 Apache 代理
我需要设置具有身份验证的代理来验证连接到互联网的应用程序的行为。
我正在尝试设置一个带有转发代理和身份验证的 Apache 安装,尽管我已经接近使其工作,但我想知道是否有更好的方法,因为配置相当深奥。
如何配置 Apache 以这种方式工作?
是否还有其他已经配置好的选项? 也许是一些虚拟机或其他软件工具,而不是 Apache?
I need to set up a proxy with authentication to verify the behavior of an application that connects to the internet.
I am trying to set-up an Apache installation with forward proxy and authentication, and even though I am close to make it work, I wonder if there is maybe a better way, as the configuration is fairly esoteric.
How can Apache be configured to work this way?
Is there any other good option that is already configured? Maybe some VM or some other software tool, instead of Apache?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
作为记录,这是我如何将 apache 设置为具有基本身份验证的转发代理:
打开 http.conf
取消注释以下 LoadModule 指令以启用代理功能
将以下指令添加到 http.conf 以启用身份验证
创建一个使用 htpasswd.exe 实用程序的password.file。 将其放在 Apache 根目录中
使用文本编辑器创建一个与 password.file 处于同一级别的 group.file,其中包含以下内容
然后运行
apachectl restart
以获取配置更改。For the record, this is how I set up apache to be used as a forward-proxy with basic authentication:
Open http.conf
Uncomment the following LoadModule directives to enable proxy functionality
Add the following directives to the http.conf to enable authentication
Create a password.file using the htpasswd.exe utility. Place it on the Apache Root directory
Create a group.file using a text editor at the same level as the password.file with the following contents
Then run
apachectl restart
to pick up the configuration changes.我使用 Squid。
安装它并使用配置文件中的“auth_param”指令进行基本身份验证非常容易。
您会发现一些示例、了解其工作原理,以及Squid 网站上有关 auth_param 的所有详细信息
I use Squid.
It's quite easy to install it and to setup it with a basic authentication with the "auth_param" directive in the configuration file.
You will find some samples, understand how it works, and all details about the auth_param on Squid Website