[30388f42] feat: Full stack integration and documentation overhaul

This commit is contained in:
2026-03-08 12:24:35 +00:00
parent 6e0479f8bd
commit 7879b2193c
15 changed files with 843 additions and 996 deletions

View File

@@ -60,6 +60,16 @@ http {
proxy_set_header Connection "upgrade";
}
location /market/ {
auth_basic "Restricted Access - Local AI Suite";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_pass http://market-intelligence:3001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /b2b/ {
auth_basic "Restricted Access - Local AI Suite";
auth_basic_user_file /etc/nginx/.htpasswd;
@@ -81,6 +91,16 @@ http {
proxy_set_header Connection "upgrade";
}
location /content/ {
auth_basic "Restricted Access - Local AI Suite";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_pass http://content-engine:3000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location /competitor/ {
auth_basic "Restricted Access - Local AI Suite";
auth_basic_user_file /etc/nginx/.htpasswd;
@@ -94,7 +114,7 @@ http {
location /heatmap/ {
auth_basic "Restricted Access - Local AI Suite";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_pass http://heatmap-frontend:5173/;
proxy_pass http://heatmap-frontend:80/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;