feat: implement channel runtime connectors

This commit is contained in:
2026-06-03 16:22:44 +08:00
parent ee972441f5
commit c3d84b904a
105 changed files with 15621 additions and 322 deletions

View File

@ -36,6 +36,15 @@ http {
proxy_pass http://127.0.0.1:18080;
}
location /api/channels/ {
proxy_pass http://127.0.0.1:18080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_read_timeout 3600;
proxy_send_timeout 3600;
}
location /api/ {
proxy_pass http://127.0.0.1:18080;
}
@ -69,4 +78,3 @@ http {
}
}
}