Fix Qdrant API proxy and implement AuthGuard

This commit is contained in:
2026-06-06 12:41:08 +05:30
parent 4a1b8460d7
commit 759c525689
25 changed files with 56 additions and 48 deletions

View File

@@ -8,4 +8,12 @@ server {
# This line forces Nginx to pass routing back to React Router
try_files $uri $uri/ /index.html;
}
# Proxy Qdrant API requests to actual Qdrant instance
location /qdrant/ {
proxy_pass http://66.116.207.225:6333/;
proxy_set_header api-key "Package@321#";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}