Squid 基于网络的代理身份验证

发布于 2024-10-30 02:44:31 字数 416 浏览 5 评论 0原文

我是 Squid 新手,目前我已成功使用外部 ACL 设置基本身份验证来验证用户名和密码。这很好用,但我想要一个“基于 HTML”的自定义登录页面来对用户进行身份验证。

目前,这是我的有效设置:

auth_param basic program /usr/bin/php ./app.php
external_acl_type tcgloginhelper ttl=1800 %SRC %LOGIN %{Proxy-Authorization} /usr/bin/php ./app.php
acl tcglogin external tcgloginhelper
http_access allow tcglogin

Is it possible to have a custom html Login page?这怎么能做到呢?

I am new with Squid, currently i have successfully setup basic authentication using external ACL to validate username and password. This works great, but I want to have a custom login page "HTML based" to authenticate a user.

Currently this is my setting that works:

auth_param basic program /usr/bin/php ./app.php
external_acl_type tcgloginhelper ttl=1800 %SRC %LOGIN %{Proxy-Authorization} /usr/bin/php ./app.php
acl tcglogin external tcgloginhelper
http_access allow tcglogin

Is it possible to have a custom html login page? How can this be done?

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

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

发布评论

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

评论(1

囚你心 2024-11-06 02:44:31

是否可以为 SQUID 配置自定义登录页面?

不会。Squid 使用 RFC 样式的代理授权标头。它得到一个 HTTP
来自代理的代码 407 并在身份验证成功后传递
每个请求的标头。您需要更改代理
和浏览器。

http://www.squid-cache.org/邮件存档/squid-users/200509/0251.html

Is it possible to configure a custom login page to SQUID?

No. Squid uses the RFC-style Proxy-Authorization header. It gets a HTTP
code 407 from the proxy and after a successful authentication delivers
the header with every request. You would need to change both the proxy
and the browser.

http://www.squid-cache.org/mail-archive/squid-users/200509/0251.html

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