mongodb default is now 127.0.0.1

This commit is contained in:
rafi1212122
2023-06-04 13:50:04 +07:00
parent 7c19038c3c
commit c7f0c661ed
3 changed files with 6 additions and 4 deletions

View File

@@ -20,13 +20,13 @@ namespace Common
VerboseLevel VerboseLevel { get; set; }
[Option(DefaultValue = false)]
bool UseLocalCache { get; }
bool UseLocalCache { get; set; }
[Option(DefaultValue = true)]
bool CreateAccountOnLoginAttempt { get; }
[Option(DefaultValue = "mongodb://localhost:27017/PemukulPaku")]
string DatabaseUri { get; }
[Option(DefaultValue = "mongodb://127.0.0.1:27017/PemukulPaku")]
string DatabaseUri { get; set; }
[Option]
IGameserver Gameserver { get; }