Skip to content
Open
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
13 changes: 13 additions & 0 deletions 17/umbraco-cms/reference/configuration/securitysettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ A full configuration with all default values can be seen here:
"AllowConcurrentLogins": false,
"UserDefaultFailedLoginDurationInMilliseconds": 1000,
"UserMinimumFailedLoginDurationInMilliseconds": 250,
"BackOfficeTokenCookie": {
"SameSite": "Strict"
}
}
}
}
Expand Down Expand Up @@ -153,3 +156,13 @@ Options are:
## Member password settings

This section allows you to define the password rules for members. This section is identical to the one for users.

## Backoffice token cookie settings

User authentication tokens are redacted from the server's authentication responses and put into secure cookies instead. This section lets you change the default settings for the generated token cookies.

It is not recommended to change these settings, as it may result in lesser security for the backoffice users.

### Same site

Sets the `SameSite` configuration for the token cookies. Valid values are "Unspecified", "None", "Lax", and "Strict" (default).