Skip to content

Instantly share code, notes, and snippets.

@thomas-alrek
Created November 19, 2022 14:43
Show Gist options
  • Select an option

  • Save thomas-alrek/74a687ff838bfa0440eafa5bb86db596 to your computer and use it in GitHub Desktop.

Select an option

Save thomas-alrek/74a687ff838bfa0440eafa5bb86db596 to your computer and use it in GitHub Desktop.
http {
upstream backend {
server node1.example.com;
server node2.example.com;
}
}
server {
location / {
proxy_pass http://backend;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment