[2ff88f42] Full End-to-End integration: Webhooks, Auto-Enrichment, Notion-Sync, UI updates and new Connector Architecture

This commit is contained in:
2026-02-19 16:05:52 +00:00
parent 0142f763f0
commit 138bb4acae
24 changed files with 1107 additions and 203 deletions

View File

@@ -89,8 +89,8 @@ http {
location /ce/ {
# Company Explorer (Robotics Edition)
# KEIN Trailing Slash, damit der /ce/ Pfad erhalten bleibt!
proxy_pass http://company-explorer:8000;
# Trailing Slash STRIPS the /ce/ prefix!
proxy_pass http://company-explorer:8000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;
@@ -166,5 +166,18 @@ http {
# Explicit timeouts
proxy_read_timeout 86400; # Long timeout for stream
}
location /connector/ {
# SuperOffice Connector Webhook
# Disable Basic Auth for Webhooks as SO cannot provide it easily
auth_basic off;
# Forward to FastAPI app
# Trailing Slash STRIPS the /connector/ prefix!
proxy_pass http://connector-superoffice:8000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
}