summaryrefslogtreecommitdiff
path: root/nginx.conf
diff options
context:
space:
mode:
authorleo <azuminha1@gmail.com>2025-09-27 14:31:52 -0300
committerleo <azuminha1@gmail.com>2025-09-27 14:31:52 -0300
commit1a3a6f83cc9ef2af8fed16775dce209feb8391ab (patch)
treeb31220eeaa0f6519ab3c5e51eebe394a425cf06c /nginx.conf
tentativaHEADmaster
Diffstat (limited to 'nginx.conf')
-rw-r--r--nginx.conf16
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