3

我希望实现这样的目标:

location = / {
    if ($args ~ "^url=(.+)") { #gets the "url" get parameter
        set $key1 $1;
        proxy_pass $key1; #use the parameter as proxy address
    }
}

这甚至可能吗?

4

1 回答 1

7
location / {
    proxy_pass http://backend$arg_url;
}
于 2012-09-12T14:36:08.450 回答