Thanks. I read about it. Are you aware of the configuration required for the same. Standard way is
upstream backend {
hash $request_uri consistent;
server backend1.example.com;
server backend2.example.com;
}
my parameter is say sessionID. simply mapping it to hash $sessionID may not work. How do we define and configure in NGINX that this sessionID parameter is the one in my 3 servers and to get the value from my servers.
upstream backend {
hash $request_uri consistent;
server backend1.example.com;
server backend2.example.com;
}
my parameter is say sessionID. simply mapping it to hash $sessionID may not work. How do we define and configure in NGINX that this sessionID parameter is the one in my 3 servers and to get the value from my servers.