Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions 16/umbraco-cms/reference/configuration/securitysettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ A full configuration with all default values can be seen here:
"UsernameIsEmail": true,
"MemberRequireUniqueEmail": true,
"AllowedUserNameCharacters": "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-._@+\\",
"BackOfficeHost": "http://your-domain.com",
"UserPassword": {
"RequiredLength": 10,
"RequireNonLetterOrDigit": false,
Expand Down Expand Up @@ -84,6 +85,10 @@ By default Umbraco will not allow creation of more than one member account with

Defines the allowed characters for a username.

### BackOffice Host

Use this setting to override the Backoffice host URL. This is useful when the Backoffice client runs from a different origin than the Umbraco server. For example, in proxied, cloud-hosted setups, or when developing locally using Vite or another dev server.

### User default lockout time

Use this setting to configure how long time a User is locked out of the Umbraco backoffice when a lockout occurs. The setting accepts an integer which defines the lockout in minutes.
Expand Down