Skip to content

Instantly share code, notes, and snippets.

@ShreyasJejurkar
Last active February 20, 2021 10:59
Show Gist options
  • Save ShreyasJejurkar/d24ba1f76e5be091f04fc1ebbfbd5c1b to your computer and use it in GitHub Desktop.
Save ShreyasJejurkar/d24ba1f76e5be091f04fc1ebbfbd5c1b to your computer and use it in GitHub Desktop.
events {
}
http {
upstream myaspnetcoreapp {
server localhost:9002;
server localhost:9003;
server localhost:9001;
}
server {
listen 5555;
location / {
proxy_pass http://myaspnetcoreapp/;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment