次の状況でnginx書き換えルールを実装しようとしています
リクエスト:
http://192.168.64.76/Shep.ElicenseWeb/Public/OutputDocuments.ashx?uinz=12009718&iinbin=860610350635
次の場所にリダイレクトする必要があります。
http://localhost:82/Public/OutputDocuments.ashx?uinz=12009718&iinbin=860610350635
私は運がないのでこれを試しました:
location /Shep.ElicenseWeb/ {
rewrite ^/Shep.ElicenseWeb/ /$1 last;
proxy_pass http://localhost:82;
}
nginx に対してそのような書き換えを実行する正しい方法は何ですか?