Skip to content
Snippets Groups Projects
Commit 3f9e848a authored by Nico Wyss's avatar Nico Wyss
Browse files

nginx config file

parent 5d7e8455
No related branches found
No related tags found
No related merge requests found
http{
upstream backends {
server server-1;
server server-2;
server server-3;
}
server{
listen 9999;
location / {
proxy_pass http://backends/;
}
}
}
events {}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment