From ce6392c1cb87e295ebc64a574f9abfd3b169afb9 Mon Sep 17 00:00:00 2001 From: Cxx0822 <1556464090@qq.com> Date: Wed, 29 Jul 2026 22:12:08 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=A2=9E=E5=8A=A0=E6=99=BA=E8=83=BD?= =?UTF-8?q?=E5=AD=A6=E4=B9=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nginx.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/nginx.conf b/nginx.conf index 1653330..3e4f549 100644 --- a/nginx.conf +++ b/nginx.conf @@ -57,6 +57,14 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } + location /study-agent/ { + proxy_pass http://host.docker.internal:88/; + 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 /calibre/ { proxy_pass http://host.docker.internal:8100/; proxy_set_header Host $host; @@ -127,6 +135,11 @@ server { proxy_pass http://host.docker.internal:8000/; } + location /study-api/ { + proxy_buffering off; + proxy_pass http://host.docker.internal:8001/; + } + location /ws/ { proxy_pass http://host.docker.internal:5050;