From cbbef1f8a0560280808fafc0ccba2792c2a9bbc1 Mon Sep 17 00:00:00 2001 From: Drulikar Date: Fri, 9 May 2025 11:03:39 -0500 Subject: [PATCH] Don't require https --- src/Tgstation.Server.Host/Core/Application.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Tgstation.Server.Host/Core/Application.cs b/src/Tgstation.Server.Host/Core/Application.cs index c4958767ee..a947eeb720 100644 --- a/src/Tgstation.Server.Host/Core/Application.cs +++ b/src/Tgstation.Server.Host/Core/Application.cs @@ -940,10 +940,7 @@ namespace Tgstation.Server.Host.Core options.Scope.Add(OpenIdConnectScope.OpenId); options.Scope.Add(OpenIdConnectScope.OfflineAccess); -#if DEBUG options.RequireHttpsMetadata = false; -#endif - options.SaveTokens = true; options.ResponseType = OpenIdConnectResponseType.Code; options.MapInboundClaims = false;