From 300c48899cf94721ce2acb5df3babd4d87c2b556 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Sat, 5 Oct 2019 15:37:55 -0400 Subject: [PATCH] remove https redirection --- src/Server/Program.fs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Server/Program.fs b/src/Server/Program.fs index 1ede707..bf061c3 100644 --- a/src/Server/Program.fs +++ b/src/Server/Program.fs @@ -64,7 +64,6 @@ let configureApp (app: IApplicationBuilder) = (match env.IsDevelopment() with | true -> app.UseDeveloperExceptionPage() | false -> app.UseGiraffeErrorHandler errorHandler) - .UseHttpsRedirection() .UseCors(configureCors) .UseStaticFiles() .UseGiraffe(webApp)