fix: restore root / location to proxy to litellm_backend after nginx.conf recovery from sabotage

This commit is contained in:
kagentz-bot
2026-06-24 12:05:55 -04:00
parent ce703b8328
commit aa5ac4a280
+8 -2
View File
@@ -141,8 +141,14 @@ http {
}
location / {
root /opt/inference-harness/dashboard;
try_files $uri $uri/ /index.html;
proxy_pass $litellm_backend_url/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Authorization $http_authorization;
proxy_connect_timeout 10s;
proxy_read_timeout 600s;
proxy_buffering off;
}
location /metrics/ {