diff options
author | leo <azuminha1@gmail.com> | 2025-09-27 14:31:52 -0300 |
---|---|---|
committer | leo <azuminha1@gmail.com> | 2025-09-27 14:31:52 -0300 |
commit | 1a3a6f83cc9ef2af8fed16775dce209feb8391ab (patch) | |
tree | b31220eeaa0f6519ab3c5e51eebe394a425cf06c /nginx.conf |
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 |