From 1a3a6f83cc9ef2af8fed16775dce209feb8391ab Mon Sep 17 00:00:00 2001 From: leo Date: Sat, 27 Sep 2025 14:31:52 -0300 Subject: tentativa --- nginx.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 nginx.conf (limited to 'nginx.conf') 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 -- cgit v1.2.3