fix:优化项目内容

This commit is contained in:
Daniel
2026-03-18 17:01:10 +08:00
parent da63282a10
commit 27dc89e251
64 changed files with 3421 additions and 4982 deletions

54
nginx_spa.conf Normal file
View File

@@ -0,0 +1,54 @@
server {
listen 80;
server_name _;
# SPA static files
root /var/www/ops-core/dist;
index index.html;
# React Router history mode
location / {
try_files $uri $uri/ /index.html;
}
# Reverse proxy to FastAPI (same-origin /api)
location /api/ {
proxy_http_version 1.1;
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;
# keep cookie + auth headers intact
proxy_pass http://127.0.0.1:8000/;
}
# Backend mounted static (/data) for downloads/preview
location /data/ {
proxy_http_version 1.1;
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_pass http://127.0.0.1:8000/data/;
}
# SSE: disable buffering to stream tokens immediately
location = /api/projects/analyze_stream {
proxy_http_version 1.1;
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_buffering off;
proxy_cache off;
proxy_read_timeout 1h;
proxy_send_timeout 1h;
chunked_transfer_encoding off;
add_header X-Accel-Buffering no;
proxy_pass http://127.0.0.1:8000/projects/analyze_stream;
}
}