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

auth.BE.redirectToURL
Type
string

Deprecated since version 14.0

The TSconfig option auth.BE.redirectToURL has been deprecated in TYPO3 v14.

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

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 0 as value.

EXT:site_package/Configuration/user.tsconfig
auth.mfa.required = 1
Copied!

auth.mfa.disableProviders

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

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

EXT:site_package/Configuration/user.tsconfig
auth.mfa.disableProviders := addToList(totp)
Copied!