0

嗨,我想为 nginx 设置一个动态代理..

location /X/Y{
    proxy_pass   http://X:Y;
    proxy_redirect          off;
    proxy_next_upstream     error timeout invalid_header http_500;
    proxy_connect_timeout   1;
    }

现在当用户提出请求时

"' http://com.mypc/com.test/8181 " nginx 需要将其重定向到 " http://com.test:8181 "

请帮助我,以便我可以解决问题

4

1 回答 1

0

您可能需要编写 nginx 负载平衡器模块。 ngx_http_upstream_ip_hash_module.c做类似的事情,所以你可能想从它开始。

Nginx 模块编写指南:http ://www.evanmiller.org/nginx-modules-guide.html

于 2013-07-13T08:11:51.507 回答