From 913197ac1840365052ed9e96d90faa7a6d45545e Mon Sep 17 00:00:00 2001 From: Jamie Rees Date: Sat, 20 Jun 2020 23:08:02 +0100 Subject: [PATCH] Fixed the host args --- 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 4f8d8027e..a4354e230 100644 --- a/src/Ombi/Program.cs +++ b/src/Ombi/Program.cs @@ -176,7 +176,7 @@ namespace Ombi [Option("host", Required = false, HelpText = "Set to a semicolon-separated (;) list of URL prefixes to which the server should respond. For example, http://localhost:123." + " Use \"localhost\" to indicate that the server should listen for requests on any IP address or hostname using the specified port and protocol (for example, http://localhost:5000). " + - "The protocol (http:// or https://) must be included with each URL. Supported formats vary between servers.", Default = "http://localhost:5000")] + "The protocol (http:// or https://) must be included with each URL. Supported formats vary between servers.", Default = "http://*:5000")] public string Host { get; set; } [Option("storage", Required = false, HelpText = "Storage path, where we save the logs and database")]