Open twn39 opened 2 years ago
squid
sudo dnf install squid httpd
安装 httpd 是为了使用 apache 附带的 htpasswd 加密工具。
进入到配置文件目录:/etc/squid, 添加用户:
/etc/squid
(base) [root@li1476-141 squid]# htpasswd ./htpasswd {yourname} New password: Re-type new password: Adding password for user {yourname}
打开 squid.conf ,添加如下 acl 配置:
squid.conf
http_port 3128 auth_param basic program /usr/lib64/squid/basic_ncsa_auth /etc/squid/htpasswd acl auth_user proxy_auth REQUIRED http_access allow auth_user
重启 squid 服务即可生效:
sudo service squid restart
squid
:安装 httpd 是为了使用 apache 附带的 htpasswd 加密工具。
进入到配置文件目录:
/etc/squid
, 添加用户:打开
squid.conf
,添加如下 acl 配置:重启 squid 服务即可生效: