我是 nginx 新手,试了多次 proxy_pass 的跳转都无法跳转到站外。nginx 可以请求站外链接么?
目前有一个外部的API接口地址:http://122.23.21.212/api/v2?args=others&argc=4
现在我想实现这样的功能:
当我访问 http://localhost/myapi?args=others&args=4 的时候,其实 nginx 在内部是去访问 http://122.23.21.212/api/v2?args=others&argc=4 这个接口,请问这个需要怎么样进行配置呢?
shell
server { ... location /myapi { proxy_pass http://122.23.21.212/api/v2?$request_uri; } ... }
各位帮忙看看,谢谢
雷雷