我希望能达到这样的目的:
location = / {
if ($args ~ "^url=(.+)") { #gets the "url" get parameter
set $key1 $1;
proxy_pass $key1; #use the parameter as proxy address
}
}
这甚至可能吗?
答案 0 :(得分:7)
location / {
proxy_pass http://backend$arg_url;
}