Author: russellm Date: 2009-09-12 19:17:35 -0500 (Sat, 12 Sep 2009) New Revision: 11545
Modified: django/trunk/docs/topics/http/sessions.txt Log: Fixed #11073 -- Added documentation for SESSION_COOKIE_PATH. Thanks to liling for the report, and gsong for the patch. Modified: django/trunk/docs/topics/http/sessions.txt =================================================================== --- django/trunk/docs/topics/http/sessions.txt 2009-09-13 00:12:26 UTC (rev 11544) +++ django/trunk/docs/topics/http/sessions.txt 2009-09-13 00:17:35 UTC (rev 11545) @@ -453,6 +453,20 @@ The name of the cookie to use for sessions. This can be whatever you want. +SESSION_COOKIE_PATH +------------------- + +.. versionadded:: 1.0 + +Default: ``'/'`` + +The path set on the session cookie. This should either match the URL path of +your Django installation or be parent of that path. + +This is useful if you have multiple Django instances running under the same +hostname. They can use different cookie paths, and each instance will only see +its own session cookie. + SESSION_COOKIE_SECURE --------------------- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
