设置带有身份验证的 Apache 代理

发布于 2024-07-17 11:23:32 字数 204 浏览 10 评论 0原文

我需要设置具有身份验证的代理来验证连接到互联网的应用程序的行为。

我正在尝试设置一个带有转发代理和身份验证的 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 技术交流群。

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

发布评论

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

评论(2

巷子口的你 2024-07-24 11:23:32

作为记录,这是我如何将 apache 设置为具有基本身份验证的转发代理:

打开 http.conf

取消注释以下 LoadModule 指令以启用代理功能

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

将以下指令添加到 http.conf 以启用身份验证

ProxyRequests On
ProxyVia On

<Proxy *>
    Order deny,allow
    Allow from all
    AuthType Basic
    AuthName "Password Required"
    AuthUserFile password.file
    AuthGroupFile group.file
    Require group usergroup
</Proxy>

创建一个使用 htpasswd.exe 实用程序的password.file。 将其放在 Apache 根目录中

htpasswd.exe -c password.file username

使用文本编辑器创建一个与 password.file 处于同一级别的 group.file,其中包含以下内容

usergroup: username

然后运行 ​​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

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so

Add the following directives to the http.conf to enable authentication

ProxyRequests On
ProxyVia On

<Proxy *>
    Order deny,allow
    Allow from all
    AuthType Basic
    AuthName "Password Required"
    AuthUserFile password.file
    AuthGroupFile group.file
    Require group usergroup
</Proxy>

Create a password.file using the htpasswd.exe utility. Place it on the Apache Root directory

htpasswd.exe -c password.file username

Create a group.file using a text editor at the same level as the password.file with the following contents

usergroup: username

Then run apachectl restart to pick up the configuration changes.

划一舟意中人 2024-07-24 11:23:32

我使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文