finish alias fixes

add manual webfront bind url
This commit is contained in:
RaidMax
2018-12-30 20:48:07 -06:00
parent 9494a17997
commit cf5ee8765d
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";