From fc7e28e714ffa108b0582262e3f3d9bfd1cecf37 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 4 Nov 2023 22:33:02 +0100 Subject: [PATCH] added robot control manager --- nginx.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nginx.conf b/nginx.conf index ae5eab0..6f88fba 100644 --- a/nginx.conf +++ b/nginx.conf @@ -31,6 +31,13 @@ server { proxy_pass http://jnx-telegram-bot-manager:3000/; } + location /rcm/ { # robot control manager + client_max_body_size 0; + proxy_http_version 1.0; + proxy_set_header Connection ""; # needed for sse + proxy_pass http://jnx-robot-control-manager:3000/; + } + location / { # frontend root /usr/share/nginx/html; index index.html;