blob: fc8933dfabc24a34e8fbba1fd045961b218fc420 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
events {
worker_connections 1000;
}
http {
access_log off;
sendfile on;
upstream api {
server api01:8080;
server api02:8080;
}
server {
listen 9999;
location / {
proxy_pass http://api;
}
}
}
|