From 3a8b98618e5bb3659d0f9f97b9daee4c530b73d6 Mon Sep 17 00:00:00 2001 From: TheBombGamer <245092019+chillcog@users.noreply.github.com> Date: Tue, 12 May 2026 01:44:49 -0700 Subject: [PATCH] Bind server to 0.0.0.0 and update .gitignore Change server IPs in HTTP and database configs from 127.0.0.1 to 0.0.0.0 so services listen on all interfaces (ports unchanged). --- Libraries/SPTarkov.Server.Assets/SPT_Data/configs/http.json | 5 +++-- .../SPTarkov.Server.Assets/SPT_Data/database/server.json | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/http.json b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/http.json index 3d06f83b..0c049051 100644 --- a/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/http.json +++ b/Libraries/SPTarkov.Server.Assets/SPT_Data/configs/http.json @@ -1,8 +1,9 @@ { - "ip": "127.0.0.1", + "ip": "0.0.0.0", "port": 6969, - "backendIp": "127.0.0.1", + "backendIp": "0.0.0.0", "backendPort": 6969, "logRequests": true, "serverImagePathOverride": {} } + diff --git a/Libraries/SPTarkov.Server.Assets/SPT_Data/database/server.json b/Libraries/SPTarkov.Server.Assets/SPT_Data/database/server.json index dcd3e67b..d217c3b9 100644 --- a/Libraries/SPTarkov.Server.Assets/SPT_Data/database/server.json +++ b/Libraries/SPTarkov.Server.Assets/SPT_Data/database/server.json @@ -1,4 +1,5 @@ { - "ip": "127.0.0.1", + "ip": "0.0.0.0", "port": 6969 } +