我想在代理传递的 URL 中添加一个参数。比如我想添加一个apiKey:&apiKey=tiger
http://mywebsite.com/oneapi?field=22 ---> https://api.somewhere.com/?field=22&apiKey=tiger
你知道吗?解决方案 ?
非常感谢,吉尔斯。
server {
listen 80;
server_name mywebsite.com;
location /oneapi{
proxy_pass https://api.somewhere.com/;
}
}