Apache forwarding request to another server

馋奶兔 提交于 2019-11-29 01:57:51
user1270392

After some research and googling further was able to do it. Here is what I did - might be helpful to those who are facing the same problem:

In httpd.conf file of machine B added the following:

ProxyPass /v1/customer C.C.C.C:8000/v1/customer

ProxyPassReverse /v1/customer C.C.C.C:8000/v1/customer

Thus from the client (machine A) if the call is made as B.B.B.B/v1/customer, then it will be forwarded to C.C.C.C:8000/v1/customer

mod_proxy module is required for ProxyPass.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!