From 944207f072e3aaac5a66cc4d1ee3a149a2775356 Mon Sep 17 00:00:00 2001 From: ytqh Date: Sun, 25 May 2025 17:25:57 +0800 Subject: [PATCH] add langbot support --- docker/nginx/conf.d/default.conf.template | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docker/nginx/conf.d/default.conf.template b/docker/nginx/conf.d/default.conf.template index 299469db92..af63acc3c1 100644 --- a/docker/nginx/conf.d/default.conf.template +++ b/docker/nginx/conf.d/default.conf.template @@ -66,6 +66,16 @@ server { include proxy.conf; } + location /langbot { + proxy_pass http://host.docker.internal:5300; + include proxy.conf; + } + + location /callback { + proxy_pass http://host.docker.internal:2290; + include proxy.conf; + } + location / { proxy_pass http://web:3000; include proxy.conf;