我正在尝试使用Sun java webserver(端口8099)作为我的websphere应用服务器的反向代理(端口8051)
我在obj.conf中添加了这个条目
<Object name="reverse-proxy-/">
Route fn="set-origin-server" server="http://example.com:8051"
</Object>
<Object ppath="http:*">
Service fn="proxy-retrieve" method="*"
</Object>
所以在此之后,当我点击http://example.com:8099时,它会被正确地路由到websphere http://example.com:8051/app
但是一旦我进入我的应用程序,它就会永久地发送到我的websphere应用服务器,即在我使用http://example.com:8099/app/login.html的用户名和密码登录后,它会永久转发到http://example.com:8051/app1
知道为什么会这样吗?
答案 0 :(得分:1)
您的WebSphere Virtual Host的别名列表中是否有example.com:8099?