From 52d407020a251e960fd677b3fd061fb19b05de46 Mon Sep 17 00:00:00 2001 From: "n.tolstov" Date: Sun, 30 Nov 2025 20:06:26 +0300 Subject: [PATCH] fix: Update frontend API and WebSocket URLs from localhost to a specific IP address. --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 99e26d3..5d7477e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -58,8 +58,8 @@ services: dockerfile: Dockerfile container_name: sp-frontend environment: - - NEXT_PUBLIC_API_URL=http://localhost:8091 - - NEXT_PUBLIC_WS_URL=ws://localhost:8091 + - NEXT_PUBLIC_API_URL=http://192.168.50.130:8091 + - NEXT_PUBLIC_WS_URL=ws://192.168.50.130:8091 volumes: - ./frontend:/app - /app/node_modules