Welcome! Log In Create A New Profile

Advanced

Re: Send all requests to two separate upstream servers?

Richard Kearsley
June 17, 2014 11:10AM
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_passhttp://backend http://original_upstream;
}
}|


_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Send all requests to two separate upstream servers?

Eric Feldhusen June 17, 2014 10:14AM

Re: Send all requests to two separate upstream servers?

Richard Kearsley June 17, 2014 11:10AM

Re: Send all requests to two separate upstream servers?

Eric Feldhusen June 17, 2014 11:14AM

Re: Send all requests to two separate upstream servers?

Richard Kearsley June 17, 2014 11:26AM

Re: Send all requests to two separate upstream servers?

Reinis Rozitis June 17, 2014 11:38AM

Re: Send all requests to two separate upstream servers?

Eric Feldhusen June 17, 2014 06:10PM

Re: Send all requests to two separate upstream servers?

Yichun Zhang (agentzh) June 17, 2014 06:28PM

Re: Send all requests to two separate upstream servers?

Eric Feldhusen June 17, 2014 11:22PM

Re: Send all requests to two separate upstream servers?

unclepieman June 17, 2014 11:32PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 140
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready