Hi,
Is there a way to prevent Devise sessions from being shared across subdomains in IE? I have an app with several subdomains such as:
In all other browsers but IE, sessions are not shared across these 3 subdomains. However, when using Internet Explorer sessions will persist across dev, staging & production subdomains if the same user record is present in the different databases. Using devise (3.2.4) with the following session configs:
Example::Application.config.session_store :cookie_store, key: '_example_session'
I have tried all sorts of combinations to scope the cookie to the subdomain such as:
setting tld_length to various sizes, etc.
But I just cannot get the sessions to stop being shared across subdomains in IE. What gives? Anyone have any insight into this?
Thanks in advance!
- Tom