Feature #14237
closedAllow custom path for "_redmine_session_" cookie
0%
Description
We are running two redmine instances in one domain and hit a problem when logging in to both instances concurrently. Without enabling autologin on login both instances interfere with each other while browsing through issues etc. Usually the other instance logs out immediately.
I have set the configs as follows:
First instance:
autologin_cookie_name: "first_instance_autologin"
autologin_cookie_path: "first_instance"
autologin_cookie_secure:
Second instance:
autologin_cookie_name: "second_instance_autologin"
autologin_cookie_path: "second_instance"
autologin_cookie_secure:
When enabling autologin I can see that the autologin cookie is put into its subpath defined above correctly when browsing but the "_redmine_session_" cookie is still in path "/".
My assumption is that this cookie also needs to be placed in a unique path. If this is the issue here I would kindly ask to add this configuration option straight forward.
Thank you!
Related issues