-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
471 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -206,14 +206,22 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# If you don't need the extra validations, you can set this to `false` to | ||
# save some resources, if your clients to a lot of `/userinfo` lookups. | ||
# default: true | ||
USERINFO_STRICT=true | ||
#USERINFO_STRICT=true | ||
|
||
# Can be used when 'OPEN_USER_REG=true' to restrict the domains | ||
# for a registration. For instance, set it to | ||
# 'USER_REG_DOMAIN_RESTRICTION=gmail.com' to allow only | ||
# registrations with '[email protected]' (default: '') | ||
#USER_REG_DOMAIN_RESTRICTION=some-domain.com | ||
|
||
# If set to true, a violation inside the CSRF protection middleware based | ||
# on Sec-* headers will block invalid requests. Usually you always want this | ||
# enabled. You may only set it to false during the first testing phase if you | ||
# experience any issues with an already existing Rauthy deployment. | ||
# In future releases, it will not be possible the disable these blocks. | ||
# default: true | ||
#SEC_HEADER_BLOCK=true | ||
|
||
# If set to 'true', this will validate the remote peer IP address with | ||
# each request and compare it with the IP which was used during the initial | ||
# session creation / login. If the IP is different, the session will be | ||
|
@@ -963,6 +971,31 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C | |
# default: false | ||
#DISABLE_APP_VERSION_CHECK=false | ||
|
||
##################################### | ||
############## FED CM ############### | ||
##################################### | ||
|
||
## CAUTION: The FedCM is highly experimental at this point! | ||
## Do not attempt to use it in production because it is subject to change | ||
## in the future! The spec is currently a draft and under active development. | ||
|
||
# Set to `true` to enable the experimental FedCM. | ||
# default: false | ||
#EXPERIMENTAL_FED_CM_ENABLE=false | ||
|
||
# Session lifetime for FedCM in seconds - the session can not be extended | ||
# beyond this time and a new login will be forced. | ||
# default: 2592000 | ||
#SESSION_LIFETIME_FED_CM=2592000 | ||
|
||
# Session timeout for FedCM in seconds | ||
# When a new token / login is requested before this timeout hits the limit, | ||
# the user will be authenticated without prompting for the credentials again. | ||
# This is the value which can extend the session, until it hits its maximum | ||
# lifetime set with _FED_CM. | ||
# default: 259200 | ||
#SESSION_TIMEOUT_FED_CM=259200 | ||
|
||
##################################### | ||
####### LIFETIMES / TIMEOUTS ######## | ||
##################################### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.