@@ -138,22 +138,22 @@ There are four configuration options that can be set as environment variables re
138138of sso proxy when it authenticates with sso authenticator.
139139
140140
141- The **session_valid_ttl ** option controls the amount of time it will take for
141+ The **session\_ttl\_valid ** option controls the amount of time it will take for
142142` sso_proxy` to pick up on authentication changes in the 3rd party provider
143143(e.g. revoked access, group membership updates). Once expired, `sso_proxy`
144144will make an _internal request_ to `sso_auth` (i.e. invisible to the
145145end user) to revalidate & refresh the session.
146146
147- The **session_lifetime_ttl ** option controls the maximum lifetime of a
147+ The **sessioni\_ttl\_lifetime ** option controls the maximum lifetime of a
148148` sso_proxy` session, after which a user will be 301 redirected to
149149` sso_auth` to go through the 3rd party OAuth2 flow again.
150150
151- The **cookie_expire ** option controls the maximum lifetime of the `sso_proxy`
151+ The **session\_cookie\_expire ** option controls the maximum lifetime of the `sso_proxy`
152152cookie stored by a user's web browser, after which a user will also be 301
153153redirected to `sso_auth` to go through the 3rd party OAuth2 flow
154154again.
155155
156- The **grace_period_ttl ** option controls the duration of the grace period that
156+ The **session\_ttl\_graceperiod ** option controls the duration of the grace period that
157157` sso_proxy` grants to existing sessions in the event that `sso_auth`'s
158158upstream provider is unavailable. `sso_proxy` starts this grace period whenever
159159` sso_auth` returns either a `429 Too Many Requests` or `503 Service
@@ -163,11 +163,11 @@ honored as valid. The grace period ends either after the TTL expires or when
163163
164164##### Notes
165165
166- * For now, the `cookie_expire ` value should be greater than or equal to the
166+ * For now, the `session_cookie_expire ` value should be greater than or equal to the
167167 `session_lifetime_ttl` value. In the future, we should remove the separate
168168 `cookie_expire` option altogether and just rely on `session_lifetime_ttl`.
169169
170- * The value of `session_valid_ttl ` has a direct impact on the number of
170+ * The value of `session_ttl_valid ` has a direct impact on the number of
171171 requests we will make to the 3rd party authentication provider, as requests
172172 to re-validate a user' s permissions will be made every time it expires. Tune
173173 this value to balance between responsiveness to permission changes and
@@ -176,7 +176,7 @@ honored as valid. The grace period ends either after the TTL expires or when
176176 See [Google service accounts](#google-service-accounts) below to
177177 check API usage and quotas.
178178
179- * The grace period defined by `grace_period_ttl ` is granted on a per-user basis,
179+ * The grace period defined by `session_ttl_graceperiod ` is granted on a per-user basis,
180180 starting from the first failure to authenticate.
181181
182182# ## Websockets
0 commit comments