From ece4141f3cdda24949d40b29605533e4364c6c47 Mon Sep 17 00:00:00 2001 From: mike Date: Wed, 17 Dec 2025 15:06:42 +0100 Subject: [PATCH] jarvis --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 242caa9..3512023 100644 --- a/nginx.conf +++ b/nginx.conf @@ -20,9 +20,9 @@ server { try_files /index.html =404; } - # Proxy API requests to plato.lan + # Proxy API requests to plato.lan (192.168.1.74) location /api/ { - proxy_pass http://plato.lan:1234/v1/; + proxy_pass http://192.168.1.74:1234/v1/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;