mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-28 01:02:59 +08:00
Listens to all addresses by default
Signed-off-by: Jaida Wu <mlgmxyysd@meowcat.org>
This commit is contained in:
parent
aacd261206
commit
68deff0c95
@ -1,16 +1,16 @@
|
||||
package emu.grasscutter;
|
||||
|
||||
public final class Config {
|
||||
public String DispatchServerIp = "127.0.0.1";
|
||||
public String DispatchServerPublicIp = "";
|
||||
public String DispatchServerIp = "0.0.0.0";
|
||||
public String DispatchServerPublicIp = "127.0.0.1";
|
||||
public int DispatchServerPort = 443;
|
||||
public String DispatchServerKeystorePath = "./keystore.p12";
|
||||
public String DispatchServerKeystorePassword = "";
|
||||
public Boolean UseSSL = true;
|
||||
|
||||
public String GameServerName = "Test";
|
||||
public String GameServerIp = "127.0.0.1";
|
||||
public String GameServerPublicIp = "";
|
||||
public String GameServerIp = "0.0.0.0";
|
||||
public String GameServerPublicIp = "127.0.0.1";
|
||||
public int GameServerPort = 22102;
|
||||
|
||||
public String DatabaseUrl = "mongodb://localhost:27017";
|
||||
|
Loading…
Reference in New Issue
Block a user