码迷,mamicode.com
首页 > Web开发 > 详细

Ubuntu中的apache中设置代理

时间:2019-08-30 19:26:52      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:管理   ubunt   pac   gmail   nbsp   使用   star   bsp   ble   


1、启用代理模块

1 a2enmod proxy proxy_balancer proxy_http 

2、修改 /sites-available/000-default.conf 添加

 1 <VirtualHost *:80>
 2         #配置站点的域名
 3         ServerName xxx.com
 4         #配置站点的管理员信息
 5         ServerAdmin xxx@gmail.com
 6 
 7         #off表示开启反向代理,on表示开启正向代理
 8         ProxyRequests Off
 9         ProxyMaxForwards 100
10         ProxyPreserveHost On
11         #这里表示要将现在这个虚拟主机跳转到本机的4000端口
12         ProxyPass / http://127.0.0.1:4000/
13         ProxyPassReverse / http://127.0.0.1:4000/
14         <Proxy *>
15             Order Deny,Allow
16             Allow from all
17         </Proxy>
18 </VirtualHost>

 3、设置完成后需要使用命令 service apache2 restart 重启服务器

Ubuntu中的apache中设置代理

标签:管理   ubunt   pac   gmail   nbsp   使用   star   bsp   ble   

原文地址:https://www.cnblogs.com/TreeSky/p/11436302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!