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
このconfに欠けているものは何ですか?