Add Vue 3 dashboard frontend with nginx reverse proxy, charts and LLM analysis UI

This commit is contained in:
Arch Agent
2026-05-07 10:19:36 +02:00
parent 695d715d5b
commit 7d9bad9ead
7 changed files with 478 additions and 25 deletions
+35
View File
@@ -0,0 +1,35 @@
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
upstream backend {
server backend:8000;
}
server {
listen 80;
client_max_body_size 100M;
root /usr/share/nginx/html;
index index.html;
location /api/ {
proxy_pass http://backend/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
}
location / {
try_files $uri $uri/ /index.html;
}
}
}