fixed the issue where we could only bind to localhost

This commit is contained in:
tidusjar 2020-04-10 22:53:41 +01:00
commit c065235776

View file

@ -72,7 +72,7 @@ namespace Ombi
url = new ApplicationConfiguration url = new ApplicationConfiguration
{ {
Type = ConfigurationTypes.Url, Type = ConfigurationTypes.Url,
Value = "http://localhost:5000" Value = "http://*:5000"
}; };
using (var tran = settingsDb.Database.BeginTransaction()) using (var tran = settingsDb.Database.BeginTransaction())
{ {