One minute
Centos7架设Http代理服务器
Http代理服务器+pac模式的梯子可以使用得比较舒适, 于是在centos服务器安装一个http代理服务器
yum -y install tinyproxy
vim /etc/tinyproxy/tinyproxy.conf
注释掉 Allow,表示允许所有人访问代理
#Allow 127.0.0.1
启动 TinyProxy
systemctl start tinyproxy.service
systemctl enable tinyproxy.service
开放端口访问
# 防火墙
firewall-cmd --permanent --add-port=8888/tcp
firewall-cmd --reload
firewall-cmd --list-port