Apache能做反向代理吗

(*-*)浩
Lepaskan: 2019-06-18 11:29:10
asal
3111 orang telah melayarinya

反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。

Apache能做反向代理吗

主要讲述Apache的反向代理。

首先确保Apache有这些模块,在Apache根目录下确认有这些模块,主要包含以下模块:

mod_proxy.so

mod_proxy_ajp.so

mod_proxy_balancer.so

mod_proxy_connect.so

mod_proxy_http.so

打开配置conf/httpd.conf文件,将这些模块的注释去除,如下图所示:

apachre-1.png

修改配置文件,打开文件  conf/httpd.conf  ,在文件末尾加上如下配置:

#反向代理
ProxyRequests Off
ProxyPass /clusterDemo http://127.0.0.1:8081/clusterDemo
ProxyPassReverse /clusterDemo http://127.0.0.1:8081/clusterDemo
 
ProxyPass /clusterDemo2 http://127.0.0.1:8082/clusterDemo2
ProxyPassReverse /clusterDemo2 http://127.0.0.1:8082/clusterDemo2
 
ProxyPass /clusterDemo3 http://127.0.0.1:8083/clusterDemo3
ProxyPassReverse /clusterDemo3 http://127.0.0.1:8083/clusterDemo3
#8888为apache的监听端口
<proxy  http://127.0.0.1:8888>
    AllowOverride None
    Order Deny,Allow
    Allow from all
</proxy>
Salin selepas log masuk

测试

启动apache和对应的tomcat。

在浏览器上输入地址:http://127.0.0.1:8888/clusterDemo/index.jsp

apache-2.png

在浏览器上输入地址:http://127.0.0.1:8888/clusterDemo2/index.jsp

apache-3.png

地址栏中请求的应用能正确访问表示,Apache的反向代理请求转发成功!!!

更多Apache相关技术文章,请访问Apache使用教程栏目进行学习!

Atas ialah kandungan terperinci Apache能做反向代理吗. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Label berkaitan:
sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel terbaru oleh pengarang
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan