如何使tomcat在反向代理后面工作?

时间:2012-10-31 02:57:34

标签: tomcat nginx reverse-proxy

我有一个Tomcat服务器,它在$ myip:8080上运行良好。当我在$ myip:8080 / test()上提交表单时,它会跳转到$ myip:8080 / test / get_result并给出正确的结果。

当我访问$ myip / services / test时,为了查看$ myip:8080 / test的结果,我在nginx的配置中重写了url并使其指向$ myip:8080。配置如下所示:

location /services/ {
 rewrite /services/(.*) /$1 break;
  proxy_pass http://127.0.0.1:8080;
   proxy_set_header Host $host;
}

可以访问$ myip / services / test,但是当我提交表单时,它会跳转到$ myip / services / get_result。我该怎么做才能让它跳转到$ myip / services / test / get_result呢?

谢谢

0 个答案:

没有答案