标签:管理 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
重启服务器
标签:管理 ubunt pac gmail nbsp 使用 star bsp ble
原文地址:https://www.cnblogs.com/TreeSky/p/11436302.html