三、nginx代理功能

发布时间:2024年01月10日

SQUID代理服务器配置

安装squid

yum install squid -y 

编辑squid配置文件

#vim /etc/squid/squid.conf 
acl local src 192.168.0.0/24   	   //允许192.168.0.0/24网段内所有客户机访问代理服务器


http_access allow local 		  //该记录一定要添在deny all之前
http_port 3128 

定义拒绝访问

# 这一行是定义
acl {定义名字} url_regex -i {关键字}
acl deny_keyword url_regex -i jd.com

# 这一行是调用自己定义的
http_access deny {定义名字}

http_access deny deny_keyword

# 定义好了 之后要重启 服务器
systemctl restart squid

在这里插入图片描述
在这里插入图片描述

启动squid服务

systemctl start squid 
systemctl enable squid 

linux客户端配置

linux客户端配置正向代理

export http_proxy=http://192.168.0.109:3128
export https_proxy=http://192.168.0.109:3128
echo "export http_proxy=http://192.168.0.109:3128" >>/etc/profile
echo "export https_proxy=http://192.168.0.109:3128" >>/etc/profile

测试http

  wget http://www.jd.com/index.php

在这里插入图片描述
可以看到 403

代理服务器上查看日志/var/log/squid/access.log

cat /var/log/squid/access.log

image-20200624010413285

windows 也可以配置网页代理

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述


本章完结

文章来源:https://blog.csdn.net/2301_79996063/article/details/135493089
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。