nginx proxy_pass配置到virtualhost

时间:2014-12-19 23:35:56

标签: apache nginx proxypass

我想重定向到托管为apache虚拟主机的外部URL。 nginx解析了显然无法解析到服务器上正确的Web根目录的URL。

 server {
            server_name localhost;
            location / {
                    proxy_set_header Host $host;
                    proxy_pass http://www.urlforvirtualhost.com;
            }
    }

问题是如何在没有nginx解析URL的ip-address的情况下允许proxy_pass?

0 个答案:

没有答案