How to add an arg to the requests to the upstreams

Igor Sysoev igor at sysoev.ru
Wed May 25 13:54:25 MSD 2011


On Wed, May 25, 2011 at 05:48:26AM -0400, speedfirst wrote:
> Hey, I wanna add a custom arg to the upstreams by proxy_pass like this:
> 
> upstream servers {
>     server1:8011;
>     server2:8012;
>  }
> 
> ...
> server {
>   listen on 8443;
>   ssl on;
>   server_name server0;
>   location / {
>      proxy_pass https://servers; 
>   }
> }
> 
> 
> My expectation: type "https://server0:8443" and the upstream will get
> "https://server1:8011?abc=1"
> 
> So how can I make this? Thanks.

      proxy_pass  https://servers$uri?abc=1;


-- 
Igor Sysoev



More information about the nginx mailing list