From: TheSaminator Date: Mon, 7 Feb 2022 15:15:14 +0000 (-0500) Subject: Work around hurdle that prevents Apache mod_proxy from working correctly X-Git-Url: https://gitweb.starshipfights.net/?a=commitdiff_plain;h=947e15b01168db89776fac0eb1bce5c4777c7623;p=starship-fights Work around hurdle that prevents Apache mod_proxy from working correctly --- 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" } }