From c69e03d783ed838575c4378016cfc27e4cba45c9 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Fri, 8 Aug 2025 01:20:58 -0500 Subject: [PATCH] Update nginx routes --- docker/nginx.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docker/nginx.conf b/docker/nginx.conf index 57913a0d..909aa46e 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -27,6 +27,24 @@ http { proxy_set_header X-Forwarded-Proto $scheme; } + location /version/ { + proxy_pass http://127.0.0.1:8081; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + + location /releases/ { + proxy_pass http://127.0.0.1:8081; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + } + location /ssh/db/ { proxy_pass http://127.0.0.1:8081; proxy_http_version 1.1;