我需要在Nginx中创建一个非常简单的映射,将子路径重定向到位于同一子网中的另一台服务器。
- Nginx服务器:192.168.0.2
- Tomcat服务器:192.168.0.3:8443
我试图把它放在服务器部分
location /tomcatapi/ {
rewrite /tomcatapi/(.*) $1 break;
proxy_pass http://192.168.0.3:8443;
}
但是我只能访问http://www.myservice.com/tomcatapi/的页面是一个500错误页面,在nginx日志文件中,我遇到以下错误:
the rewritten URI has a zero length
我在这个会议上缺少什么?