Commit 8b6a2c11 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #11073 -- Added documentation for SESSION_COOKIE_PATH. Thanks to liling...

Fixed #11073 -- Added documentation for SESSION_COOKIE_PATH. Thanks to liling for the report, and gsong for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11545 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 7dfd7cb8
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -453,6 +453,20 @@ Default: ``'sessionid'``

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
---------------------