四虎影视在线影院在线观看,小s货再浪些再咬紧点h,国产精品水嫩水嫩,97精产国品一二三产区
標題:
[分享]
wdcp中利用apache作反向代理
[打印本頁]
作者:
besthome
時間:
2019-4-28 23:04
標題:
wdcp中利用apache作反向代理
首先這個貼子就非常好:
http://cd-genova.com/bbs/thread-58866-1-1.html但是很奇怪,反向代理baidu可以,其它網站或者ip,以及ip:端口的,總是不成功。
因此,找了這個方法:在apache的vhost文件中,找到相應的網站.vhost文件
編輯下:
<VirtualHost *:88>
DocumentRoot /www/web/xxxx_com/public_html
ServerName xxxx.com
ServerAlias www.xxxx.com
ErrorDocument 400 /errpage/400.html
ErrorDocument 403 /errpage/403.html
ErrorDocument 404 /errpage/404.html
ErrorDocument 503 /errpage/503.html
</VirtualHost>
<Directory /www/web/xxxx_com>
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
# 開始-apache反向代理
ProxyRequests Off
#apache的監(jiān)聽其他端口
<proxy http://114.114.114.114:8080/>
AllowOverride None
Order Deny,Allow
Allow from all
</proxy>
ProxyPass / http://114.114.114.114:8080/
ProxyPassReverse / http://114.114.114.114:8080/
# 結束-apache反向代理
復制代碼
發(fā)現新版本已經有反向代理功能,需要專業(yè)版本啟用,這么倒騰管理員不要見怪。
作者:
besthome
時間:
2019-4-29 22:38
上面的方法,有個問題,如果多個反向代理時,總是指向一個網站,也沒找到原因在哪,管理員或者其他兄弟有知道的,敬請指點。
后來試了試,直接利用nginx來作反向代理
在ngnix的vhost中,編輯對應的配置文件
location /{
proxy_set_header Host $host:$server_port;
proxy_pass http://ip:端口/;
}
復制代碼
歡迎光臨 WDlinux官方論壇 (http://cd-genova.com/bbs/)
Powered by Discuz! 7.2