Linux

使用使用者創建 HTTP 代理並使用 Squid 傳遞

  • November 1, 2021

我想知道是否可以使用Squid作為具有基本身份驗證的代理,例如與 cURL 一起使用:

curl -vvv "https://ifconfig.me" -x user:password@localhost:8000

其中 localhost 是 Squid 實例。

Squid 和 HTTPS 網站可以嗎?

解決了

htpasswd -bc /etc/squid/passwords user password

squid.conf

auth_param basic program /usr/lib/squid3/basic_ncsa_auth /etc/squid/passwords
auth_param basic realm proxy
acl authenticated proxy_auth REQUIRED
http_access allow authenticated

http_port 3128

引用自:https://serverfault.com/questions/1082266