I have example.com and support.example.com . If a user is logged in on the main site, I'd like to have the session be accessible from the support site.
Setting the SESSION_COOKIE_DOMAIN to '.example.com' isn't what I want because I have many, many other subdomains with django apps that I would like to NOT have access to the session.
Currently my only conceivable workaround involves tricky redirects, which I'd like to avoid if necessary.
Is there any way to do this?