auth
The auth key is used for configuration of authentication services.
Properties
| Name | Type |
|---|---|
| string | |
| boolean | |
| string, comma separated list of strings | |
| string |
auth.BE.redirectToURL
-
- Type
- string
Deprecated since version 14.0
The TSconfig option
auth.has been deprecated in TYPO3 v14.BE. redirect To URL If a redirect after a successful backend login is required, it is recommended to create custom PSR-15 middleware to handle the redirection.
auth.mfa.required
-
- Type
- boolean
Require multi-factor authentication for a user. This overrules the global configuration and can therefore also be used to unset the requirement by using
0as value.EXT:site_package/Configuration/user.tsconfigauth.mfa.required = 1Copied!
auth.mfa.disableProviders
-
- Type
- string, comma separated list of strings
- Example
- Example: Disable a multi-factor authentication provider
Disable multi-factor authentication providers for the current user or group. It overrules the configuration from the Backend usergroup "Access List". This means, if a provider is allowed in "Access List" but disallowed with TSconfig, it will be disallowed for the user or user group.
auth.mfa.recommendedProvider
-
- Type
- string
- Example
- Example: Set a recommended multi-factor authentication provider
Set a recommended multi-factor authentication provider on a per user or user group basis, which overrules the global configuration.
Examples
Example: Disable a multi-factor authentication provider
auth.mfa.disableProviders := addToList(totp)
Example: Set a recommended multi-factor authentication provider
auth.mfa.recommendedProvider = totp