From 07a8fc3e50f737a2c910c8fe48b7f2300dd00402 Mon Sep 17 00:00:00 2001 From: LukeGus Date: Tue, 12 Aug 2025 14:38:01 -0500 Subject: [PATCH] Add bulk import path --- docker/nginx.conf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker/nginx.conf b/docker/nginx.conf index 909aa46e..e6a83300 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -54,6 +54,15 @@ http { proxy_set_header X-Forwarded-Proto $scheme; } + location /ssh/bulk-import/ { + 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/websocket/ { proxy_pass http://127.0.0.1:8082/; proxy_http_version 1.1;