🐛 Fix invalid deps passed to http management routes service

This commit is contained in:
Andrey Antukh
2026-02-10 13:46:29 +01:00
parent f08700945a
commit 920fbe34ad
2 changed files with 7 additions and 1 deletions

View File

@@ -275,7 +275,8 @@
::email/whitelist (ig/ref ::email/whitelist)} ::email/whitelist (ig/ref ::email/whitelist)}
::mgmt/routes ::mgmt/routes
{::db/pool (ig/ref ::db/pool)} {::db/pool (ig/ref ::db/pool)
::setup/props (ig/ref ::setup/props)}
:app.http/router :app.http/router
{::session/manager (ig/ref ::session/manager) {::session/manager (ig/ref ::session/manager)

View File

@@ -133,6 +133,11 @@ http {
proxy_http_version 1.1; proxy_http_version 1.1;
} }
location /management {
proxy_pass http://127.0.0.1:6060/management;
proxy_http_version 1.1;
}
location /mcp/stream { location /mcp/stream {
proxy_pass http://127.0.0.1:4401/mcp; proxy_pass http://127.0.0.1:4401/mcp;
proxy_http_version 1.1; proxy_http_version 1.1;