close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": No module named svn). Look in the Trac log for more information.
- Timestamp:
-
Nov 6, 2009, 12:15:01 PM (15 years ago)
- Author:
-
cmlenz
- Comment:
-
Add session options
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v7
|
v8
|
|
24 | 24 | `error_email_to`:: The email address(es) to send [wiki:ErrorHandling#ErrorEmailNotification error notification mails] to. Multiple addresses can be specified by separating them with commas. |
25 | 25 | |
| 26 | == Forms == |
| 27 | |
| 28 | `csrf_protection`:: Whether forms should automatically be protected against Cross-Site Request Forgery (CSRF) attacks. |
| 29 | |
26 | 30 | == General == |
27 | 31 | |
… |
… |
|
33 | 37 | `timezone`:: The default timezone to apply for date/time display (for example “Europe/Berlin”). |
34 | 38 | |
35 | | == Security == |
| 39 | == Sessions == |
36 | 40 | |
37 | | `csrf_protection`:: Whether forms should automatically be protected against Cross-Site Request Forgery (CSRF) attacks. |
| 41 | `session_secret`:: A secret key to be used for signing and authenticating session cookies. This needs to be set for applications that use session storage. |
| 42 | `session_cookie_name`:: The name of the cookie used to store session state (defauls to “session”) |
| 43 | `session_cookie_path`:: The path for the cookie (defaults to “/”) |
| 44 | `session_cookie_domain`:: The domain name for the cookie |
| 45 | `session_max_age`:: The maximum age of a session in seconds (defaults to 360, which is one hour) |
38 | 46 | |
39 | 47 | == Templating == |