Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions config.TEMPLATE.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@
; Session cookie path; if not specified, defaults to the detected base path
; session_cookie_path = /

; Number of days to save login cookie for if user selects to remember
; (set to 0 to force expiration at end of current session)
; Number of days a session remains valid while idle (minimum 1 day)
; Values less than 1 are clamped to 1 day
; To expire sessions when the browser closes, use session_expire_on_close in [security]
session_lifetime = 30

; SameSite configuration for the cookie, see possible values and explanations
Expand Down Expand Up @@ -268,6 +269,9 @@
; migration of old password hashes.
encryption = sha1

; When set to On, expire cookie-based sessions upon closing the browser window.
session_expire_on_close = Off

; The unique salt to use for generating password reset hashes
salt = "YouMustSetASecretKeyHere!!"

Expand Down
Loading