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
23 changes: 23 additions & 0 deletions 16/umbraco-cms/reference/configuration/securitysettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ A full configuration with all default values can be seen here:
"AllowConcurrentLogins": false,
"UserDefaultFailedLoginDurationInMilliseconds": 1000,
"UserMinimumFailedLoginDurationInMilliseconds": 250,
"BackOfficeTokenCookie": {
"Enabled": false,
"SameSite": "Strict"
}
}
}
}
Expand Down Expand Up @@ -153,3 +157,22 @@ 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

As an added security feature, user authentication tokens can be returned in secure cookies from the server's authentication requests. This section lets you change the default settings for the generated token cookies.

For backwards compatibility reasons, the feature is disabled by default.

Recommendations:

1. Enable this feature (see below).
2. Retain the default values for the rest of the configuration.

### Enabled

When set to `true`, user authentication tokens are redacted from the server authentication responses and put into secure cookies instead.

### Same site

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