| | 161 | Session cookies |
|---|
| | 162 | =============== |
|---|
| | 163 | |
|---|
| | 164 | A few `Django settings`_ give you control over the session cookie: |
|---|
| | 165 | |
|---|
| | 166 | SESSION_COOKIE_AGE |
|---|
| | 167 | ------------------ |
|---|
| | 168 | |
|---|
| | 169 | Default: ``1209600`` (2 weeks, in seconds) |
|---|
| | 170 | |
|---|
| | 171 | The age of session cookies, in seconds. |
|---|
| | 172 | |
|---|
| | 173 | SESSION_COOKIE_DOMAIN |
|---|
| | 174 | --------------------- |
|---|
| | 175 | |
|---|
| | 176 | Default: ``None`` |
|---|
| | 177 | |
|---|
| | 178 | The domain to use for session cookies. Set this to a string such as |
|---|
| | 179 | ``".lawrence.com"`` for cross-domain cookies, or use ``None`` for a standard |
|---|
| | 180 | domain cookie. |
|---|
| | 181 | |
|---|
| | 182 | SESSION_COOKIE_NAME |
|---|
| | 183 | ------------------- |
|---|
| | 184 | |
|---|
| | 185 | Default: ``'hotclub'`` |
|---|
| | 186 | |
|---|
| | 187 | The name of the cookie to use for sessions. This can be whatever you want. |
|---|
| | 188 | |
|---|
| | 189 | ``'hotclub'`` is a reference to the Hot Club of France, the band Django |
|---|
| | 190 | Reinhardt played in. |
|---|
| | 191 | |
|---|
| | 192 | .. _Django settings: http://www.djangoproject.com/documentation/settings/ |
|---|
| | 193 | |
|---|