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:
@@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user