Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions workshop/reverse.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
upstream backend {
server localhost:9991 weight=2;
server localhost:9992;
server localhost:9993 weight=2;
server localhost:9994 weight=2;
}
server {
listen 80;

location /load_balancer {
proxy_pass http://backend;
}
}