From 64401105fbce754d427bec8134b1c8854b998d62 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Mon, 9 Aug 2021 20:38:23 -0400 Subject: [PATCH] Leave the HTTPS to the proxy --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 609c4dd..7dd7a9b 100644 --- a/Program.cs +++ b/Program.cs @@ -20,7 +20,7 @@ namespace NikolaNet Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { - webBuilder.UseStartup().UseUrls("https://0.0.0.0:5001"); + webBuilder.UseStartup().UseUrls("http://0.0.0.0:5000"); }); } }