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).
This commit is contained in:
TheBombGamer
2026-05-12 01:44:49 -07:00
parent f3f70e709c
commit 3a8b98618e
2 changed files with 5 additions and 3 deletions
@@ -1,8 +1,9 @@
{ {
"ip": "127.0.0.1", "ip": "0.0.0.0",
"port": 6969, "port": 6969,
"backendIp": "127.0.0.1", "backendIp": "0.0.0.0",
"backendPort": 6969, "backendPort": 6969,
"logRequests": true, "logRequests": true,
"serverImagePathOverride": {} "serverImagePathOverride": {}
} }
@@ -1,4 +1,5 @@
{ {
"ip": "127.0.0.1", "ip": "0.0.0.0",
"port": 6969 "port": 6969
} }