apache httpd 作为正向代理

1、工作需要,有些不能连外网的机器,需要yum下载,maven下载,pip下载,npm下载,可以在内网中可以连外网的机器上建立http代理,上面软件可以通过代理下载。

2、代理服务器安装配置httpd

下载httpd:

dnf install httpd

修改配置文件:

vim /etc/httpd/conf/httpd.conf

主要改下面几行:(参考:mod_proxy - Apache HTTP Server Version 2.4

 查看服务、重启服务:

systemctl status httpd.service

systemctl restart httpd.service 

3、使用代理

客户端配置http、https代理,在.bash_profile中(代理服务器IP:172.32.148.228,代理服务端口8070):

export http_proxy="http://172.32.148.228:8070"
export https_proxy="https://172.32.148.228:8070"
export HTTP_PROXY=$http_proxy
export HTTPS_PROXY=$https_proxy
export no_proxy='127.0.0.1,172.32.148.228,172.32.155.57,172.32.155.58,172.32.155.59,localhost'

注意:代理服务器的防火墙可能限制端口

systemctl status firewalld

systemctl disable firewalld

systemctl stop firewalld 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值