From 947e15b01168db89776fac0eb1bce5c4777c7623 Mon Sep 17 00:00:00 2001 From: TheSaminator Date: Mon, 7 Feb 2022 10:15:14 -0500 Subject: [PATCH] Work around hurdle that prevents Apache mod_proxy from working correctly --- src/jvmMain/kotlin/starshipfights/auth/providers.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jvmMain/kotlin/starshipfights/auth/providers.kt b/src/jvmMain/kotlin/starshipfights/auth/providers.kt index 3daa6a5..1085bd7 100644 --- a/src/jvmMain/kotlin/starshipfights/auth/providers.kt +++ b/src/jvmMain/kotlin/starshipfights/auth/providers.kt @@ -46,7 +46,7 @@ interface AuthProvider { serializer = UserSessionIdSerializer cookie.path = "/" - cookie.secure = true + cookie.extensions["Secure"] = null cookie.extensions["SameSite"] = "Lax" } } -- 2.25.1