我需要Nginx来反向代理以下形式的GET和POST请求:
/myapp/path/to/resource
至:
http://127.0.0.1:9090/path/to/resource
我正在尝试以下方法:
location /myapp/(.*) {
rewrite $1;
proxy_pass http://127.0.0.1:9090;
}
有想法该怎么解决这个吗 ?谢谢.
最佳答案
您实际上不需要重写.您可以通过以下方法达到相同的目的:
原文链接:https://www.f2er.com/nginx/532375.htmllocation /myapp/ {
proxy_pass http://127.0.0.1:9090/;
}