diff options
Diffstat (limited to 'nginx.conf')
-rw-r--r-- | nginx.conf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..5d3bf7c --- /dev/null +++ b/nginx.conf @@ -0,0 +1,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; + } + } +}
\ No newline at end of file |