From 0a2ce2f0043bb3abe40ad72a58f3ab51db191e2b Mon Sep 17 00:00:00 2001 From: jvyden Date: Wed, 6 Oct 2021 00:42:24 -0400 Subject: [PATCH] change http/https ports, dont https redirect --- ProjectLighthouse/Properties/launchSettings.json | 2 +- ProjectLighthouse/Startup.cs | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/ProjectLighthouse/Properties/launchSettings.json b/ProjectLighthouse/Properties/launchSettings.json index 66ac9acb..dd129793 100644 --- a/ProjectLighthouse/Properties/launchSettings.json +++ b/ProjectLighthouse/Properties/launchSettings.json @@ -18,7 +18,7 @@ "ProjectLighthouse": { "commandName": "Project", "dotnetRunMessages": "true", - "applicationUrl": "https://localhost:5001;http://localhost:5000", + "applicationUrl": "http://localhost:10060;https://localhost:10061", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/ProjectLighthouse/Startup.cs b/ProjectLighthouse/Startup.cs index b54478ad..4c81b4eb 100644 --- a/ProjectLighthouse/Startup.cs +++ b/ProjectLighthouse/Startup.cs @@ -35,8 +35,6 @@ namespace ProjectLighthouse { app.UseDeveloperExceptionPage(); } - app.UseHttpsRedirection(); - app.UseRouting(); app.UseAuthorization();