From c065235776c5d24c6c62a4578bc7e04653f40821 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 10 Apr 2020 22:53:41 +0100 Subject: [PATCH] fixed the issue where we could only bind to localhost --- src/Ombi/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ombi/Program.cs b/src/Ombi/Program.cs index 04243a317..4f8d8027e 100644 --- a/src/Ombi/Program.cs +++ b/src/Ombi/Program.cs @@ -72,7 +72,7 @@ namespace Ombi url = new ApplicationConfiguration { Type = ConfigurationTypes.Url, - Value = "http://localhost:5000" + Value = "http://*:5000" }; using (var tran = settingsDb.Database.BeginTransaction()) {