1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

finish alias fixes

add manual webfront bind url
This commit is contained in:
RaidMax
2018-12-30 20:48:07 -06:00
parent 7aad7cdc5e
commit e4cda7f649
3 changed files with 34 additions and 19 deletions

View File

@ -16,6 +16,8 @@ namespace SharedLibraryCore.Configuration
public string SocialLinkAddress { get; set; }
public string SocialLinkTitle { get; set; }
public string WebfrontBindUrl { get; set; }
public string ManualWebfrontUrl { get; set; }
public string WebfrontUrl => string.IsNullOrEmpty(ManualWebfrontUrl) ? WebfrontBindUrl.Replace("0.0.0.0", "127.0.0.1") : ManualWebfrontUrl;
public string CustomParserEncoding { get; set; }
public string CustomLocale { get; set; }
public string DatabaseProvider { get; set; } = "sqlite";