Squid

安装

yum -y install squid

安装的版本为

squid.x86_64 7:3.5.20-2.el7_3.3 @updates

配置

  • /etc/squid/squid.conf

用如下两行覆盖

http_port 3128 # 如果只监听ipv4,则该行设为 http_port 0.0.0.0:3128
http_access allow all
  • /usr/lib/systemd/system/squid.service

[Unit]
Description=Squid caching proxy
After=syslog.target network.target nss-lookup.target

[Service]
Type=forking
LimitNOFILE=16384
EnvironmentFile=/etc/sysconfig/squid
ExecStartPre=/usr/libexec/squid/cache_swap.sh
ExecStart=/usr/sbin/squid $SQUID_OPTS -f $SQUID_CONF
ExecReload=/usr/sbin/squid $SQUID_OPTS -k reconfigure -f $SQUID_CONF
ExecStop=/usr/sbin/squid -k shutdown -f $SQUID_CONF
TimeoutSec=0

[Install]
WantedBy=multi-user.target

启动

验证

Last updated

Was this helpful?