Skip to content

Instantly share code, notes, and snippets.

@ccondry
Created May 9, 2019 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ccondry/f58050e195a6d97747198cddf39231ad to your computer and use it in GitHub Desktop.
Save ccondry/f58050e195a6d97747198cddf39231ad to your computer and use it in GitHub Desktop.
nginx proxy load balance config
/etc/nginx/nginx.conf, inside http section:
# load balance web requests to cs-manager and cs-manager-2
upstream csmanager {
ip_hash;
server 198.19.253.32;
server 198.19.253.49;
}
/etc/nginx/conf.d/default.conf :
# load balance web requests to cs-manager and cs-manager-2
location /gadgets {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://csmanager;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment