Squid 基于网络的代理身份验证
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。Squid 使用 RFC 样式的代理授权标头。它得到一个 HTTP
来自代理的代码 407 并在身份验证成功后传递
每个请求的标头。您需要更改代理
和浏览器。
http://www.squid-cache.org/邮件存档/squid-users/200509/0251.html
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