$upstream_addr is returning blank

Hello,

I want to access the value of $upstream_addr. Below is the code,

location / {

echo "up = $upstream_addr";

}

The response is just "up = " . What could be the reason for this?

Posted at Nginx Forum:

On Thursday 19 June 2014 03:00:44 tsunny wrote:

The response is just "up = " . What could be the reason for this?

The $upstream_addr variable keeps the addresses of the servers that were
contacted during request processing. So, if there aren’t any at the
moment of evaluation of the variable, then it will be empty.

wbr, Valentin V. Bartenev

Thanks Valentin V. Bartenev !!

I was using it before the line

proxy_pass http://xyz.com

After placing the code after proxy_pass, I am able to see the values…

Regards,
Sunny

Posted at Nginx Forum: