-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement secure cookies by default #2107
base: main
Are you sure you want to change the base?
Implement secure cookies by default #2107
Conversation
kdp-cloud
commented
Jan 8, 2025
- Use for secure cookies in a production environment
- Force SSL in production environment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not clear how this will affect running with docker and an nginx / apache front end forwarder. Will need some testing, possible ngnix configuration changes, and maybe an ENV variable to override.
For these reasons I think it might be better left for the main
branch and next major version
I changed the branch to main and the milestone to 1.17, but I'm not sure you should override this config in production since this implicates security issues. |
The docker containers always run in production, but are often used through http, e.g for testing, trying out seek, local installation behind a firewall or reverse proxy or load balancer. I had a good look into this yesterday and some testing, and all is needed is the You may also configure secure cookies separately through the apache or nginx config, which is what we do for https://fairdomhub.org - which may be preferable as it separates the application logic from deployment. My conclusion is that it would be best to allow |