View Single Post
Old 12-19-2012, 03:48 AM   #1
ISPsystem team
 
Join Date: Dec 2011
Posts: 357
The Wishmaster is on a distinguished road
Default ip_hash for nginx in ISPmanager Cluster

With the ip_hash parameter for Nginx all user requests from one IP address will be handled by one server.

Add the ip_hash parameter into the server group description of the Nginx configuration file
ip_hash
upstream ak1976e-vdsru {
ip_hash;
server 10.0.0.32:81;
server 10.0.0.51:81;
}
The Wishmaster is offline   Reply With Quote