Skip to content

Commit

Permalink
Revert SameSite=Strict cookie setting (#1372)
Browse files Browse the repository at this point in the history
**Why**: Chrome continues to be buggy with SameSite=Strict
so we are reverting to SameSite=Lax until we can rearchitect to avoid
the bug.
  • Loading branch information
pkarman authored and Peter Karman committed Apr 14, 2017
1 parent c078dde commit f2fed79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/initializers/secure_headers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
secure: true, # mark all cookies as "Secure"
httponly: true, # mark all cookies as "HttpOnly"
samesite: {
strict: true # mark all cookies as SameSite=Strict.
lax: true # mark all cookies as SameSite=Strict.
},
}

Expand Down

0 comments on commit f2fed79

Please sign in to comment.