docs: add technical architecture diagram for IT workshop

This commit is contained in:
Jarvis
2026-02-02 14:30:27 +00:00
parent 457e64a930
commit 8205d4ecea
3 changed files with 96 additions and 1 deletions

View File

@@ -133,5 +133,21 @@ http {
proxy_connect_timeout 1800s;
proxy_send_timeout 1800s;
}
location /lead/ {
# Lead Engine (TradingTwins)
# Proxying external service on host
proxy_pass http://192.168.178.6:8501/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Websocket support for Streamlit
proxy_http_version 1.1;
# Explicit timeouts
proxy_read_timeout 86400; # Long timeout for stream
}
}
}