我想将localhost的所有请求发送到另一台服务器以及以此模式/*/service/*
开头的特定请求到ajp服务器,我在apache http服务器中使用此配置,但始终将所有请求发送到第一台服务器{{ 1}},我怎样才能摆脱它?
(http://172.16.65.83:8080/)
答案 0 :(得分:2)
您可以使用ProxyPass本身绕过其他服务器。
ProxyPass /service !
ProxyPass /service ajp://localhost:9009/
ProxyPassReverse /service ajp://localhost:9009/
ProxyPass / http://172.16.65.83:8080/
ProxyPassReverse / http://172.16.65.83:8080/