You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-9
Original file line number
Diff line number
Diff line change
@@ -800,7 +800,9 @@ local uid = session.data.uid
800
800
801
801
#### boolean session.cookie.persistent
802
802
803
-
`session.cookie.persistent` is by default `false`. This means that cookies are not persisted between browser sessions (i.e. they are deleted when the browser is closed). You can enable persistent sessions if you want to by setting this to `true`. This can be configured with Nginx `set $session_cookie_persistent on;`.
803
+
`session.cookie.persistent` is by default `false`. This means that cookies are not persisted between browser sessions
804
+
(i.e. they are deleted when the browser is closed). You can enable persistent sessions if you want to by setting this
805
+
to `true`. This can be configured with Nginx `set $session_cookie_persistent on;`.
804
806
805
807
#### number session.cookie.discard
806
808
@@ -820,7 +822,8 @@ with Nginx `set $session_cookie_renew 600;` (600 seconds is the default value).
820
822
`session.cookie.lifetime` holds the cookie lifetime in seconds in the future. By default this is set
821
823
to 3,600 seconds. This can be configured with Nginx `set $session_cookie_lifetime 3600;`. This does not
822
824
set cookie's expiration time on session only (by default) cookies, but it is used if the cookies are
823
-
configured persistent with `session.cookie.persistent == true`. See also notes about [ssl_session_timeout](#nginx-configuration-variables).
825
+
configured persistent with `session.cookie.persistent == true`. See also notes about
0 commit comments