From aa5ac4a2808f2ca744048db17fb817f51c0000b0 Mon Sep 17 00:00:00 2001 From: kagentz-bot Date: Wed, 24 Jun 2026 12:05:55 -0400 Subject: [PATCH] fix: restore root / location to proxy to litellm_backend after nginx.conf recovery from sabotage --- nginx/nginx.conf | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 760febd..74eccd1 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -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/ {