We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1ce44 commit 380dc1fCopy full SHA for 380dc1f
server/src/handlers/http/oidc.rs
@@ -192,6 +192,7 @@ fn cookie_session(id: Ulid) -> Cookie<'static> {
192
let authorization_cookie = Cookie::build("session", id.to_string())
193
.max_age(time::Duration::days(COOKIE_AGE_DAYS as i64))
194
.same_site(SameSite::None)
195
+ .secure(false)
196
.path("/")
197
.finish();
198
authorization_cookie
@@ -201,6 +202,7 @@ fn cookie_username(username: &str) -> Cookie<'static> {
201
202
let authorization_cookie = Cookie::build("username", username.to_string())
203
204
205
206
207
208
0 commit comments