Option A and that's what I figured as well.

Eric Feldusen


On Tue, Jun 17, 2014 at 10:08 AM, Richard Kearsley <[email protected]>
wrote:

>  On 17/06/14 15:13, Eric Feldhusen wrote:
>
> I have a need to adjust a nginx install doing reverse proxy to a single
> server now to adjust it to send all requests it receives to two different
> upstream servers.
>
> do you mean
> a) send each request to both?
> b) send each request to one or the other (like load balancing)
>
> a) is not possible, simply because of the basics of proxying and http
> (there would be 2 http responses mixed into 1 connection)
> b) can be done with 1 / location but adding another address to the
> upstream block:
>
> upstream backend {
>     server   <ip address>    server   <ip address>
> }
>
> server {
>     location / {
>         proxy_pass  http://backend <http://original_upstream>;
>     }
> }
>
>
>
> _______________________________________________
> nginx mailing list
> [email protected]
> http://mailman.nginx.org/mailman/listinfo/nginx
>
_______________________________________________
nginx mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx

Reply via email to