From 51df25b9b005e7ea752982d2d82422e6f0c68437 Mon Sep 17 00:00:00 2001 From: dekzter Date: Mon, 3 Mar 2025 17:30:54 -0500 Subject: [PATCH] Added back reverted file --- docker/nginx.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker/nginx.conf diff --git a/docker/nginx.conf b/docker/nginx.conf new file mode 100644 index 00000000..966ebd63 --- /dev/null +++ b/docker/nginx.conf @@ -0,0 +1,15 @@ +server { + listen 9191; + server_name yourdomain.com; + + location /static/ { + root /app; # Base directory for static files + } + + location / { + proxy_pass http://127.0.0.1:5656; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } +}