diskfloppy.me/config/cookies.cr
2024-09-13 12:59:16 +01:00

26 lines
715 B
Crystal

require "./server"
Lucky::Session.configure do |settings|
settings.key = "_diskfloppydotme_session"
end
Lucky::CookieJar.configure do |settings|
settings.on_set = ->(cookie : HTTP::Cookie) {
# If ForceSSLHandler is enabled, only send cookies over HTTPS
cookie.secure(Lucky::ForceSSLHandler.settings.enabled)
# By default, don't allow reading cookies with JavaScript
cookie.http_only(true)
# Restrict cookies to a first-party or same-site context
cookie.samesite(:lax)
# Set all cookies to the root path by default
cookie.path("/")
# You can set other defaults for cookies here. For example:
#
# cookie.expires(1.year.from_now).domain("mydomain.com")
}
end