Nginx动态代理重定向

时间:2012-09-11 19:30:21

标签: proxy nginx

我希望能达到这样的目的:

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

这甚至可能吗?

1 个答案:

答案 0 :(得分:7)