summaryrefslogtreecommitdiff
path: root/nginx.conf
blob: 5d3bf7c01a6be1fbb5c9c93cddd6d3d1fa37670f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
events {
    worker_connections 25000;
}
http {
    access_log off;
    upstream api {
        server api01:8080;
        server api02:8080;
    }
    server {
        listen 9999;
        location / {
            proxy_pass http://api;
        }
    }
}