I have server Front server:Apple and Back End server Orange
Just to be clear in first line I don't want to pass through user ip address through Apple to Orange as I already implemented that by using
proxy_set_header X-Real-IP $remote_addr;
My question is I want to pass through Front end server ip address to backend server because we have too many front end servers, so I will know which front end server send from. any ideas or example ? I can't use REMOTE_ADDR since it's passing through user ip address.
thanks.