首页 > 代码库 > Apache的reverse proxy设定
Apache的reverse proxy设定
工作需要,从同一个端口进入,在服务器端分流,去执行不同端口的服务。用apache的reverse proxy的功能实现。
①「apache2ctl -M」查看proxy module(下面的★)是否加载。如果没有加载,执行「a2enmod proxy_http」加载。
root@server:/etc/apache2/sites-available# apache2ctl -M
Loaded Modules:
core_module (static)
so_module (static)
mpm_event_module (shared)
negotiation_module (shared)
proxy_module (shared) ★
proxy_http_module (shared) ★
rewrite_module (shared)
setenvif_module (shared)
status_module (shared)
②Port 9596用的httpd conf文件里追加reverproxy的设定
作为前提,确保以下文件,及文件夹的存在
/var/wwwtest_9596/test/index.html
/var/wwwtest_9596/test/apachetest
<VirtualHost *:9596> ServerAdmin webmaster@localhost DocumentRoot /var/wwwtest_9596/ ########追加部分######## <IfModule mod_proxy.c> #Reverse Proxy <Proxy *> Order Deny,Allow Deny from all Allow from all </Proxy> ProxyRequests Off #proxy setting ProxyPass /test/apachetest/ http://127.0.0.1:80/ ProxyPassReverse /test/apachetest/ http://127.0.0.1:80/ </IfModule> ########追加部分######## </VirtualHost>
③「service apache2 restart」,重启apache服务,以让上述proxy设定生效。
④从浏览器里输入http://serverip:9596/test,此时执行的是9596端口下的服务。
⑤从浏览器里输入http://serverip:9596/test/apachetest/,此时执行的是80端口下的服务。一般80下默认的是打开apache的测试页面。
其实apache做了一个替换http://serverip:9596/test/apachetest/ -> http://serverip:80/
其实如果带参数的话,会自动传过去。http://serverip:9596/test/apachetest/?u=username&p=password -> http://serverip:80/?u=username&p=password
Apache的reverse proxy设定
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。