Quick configuration
TYPO3 v13
- Create your own public and private keys.
Change the permissions of the keys to
600
or660
- Include the site set provided from this extension and configure settings
TYPO3 v12
- Create your own public and private keys.
Change the permissions of the keys to
600
or660
-
Import the provided site configuration:
# sites/[site]/config.yaml imports: - { resource: "EXT:oidc_server/Configuration/Site/Config.yaml" }
Copied! -
Set the path to your key files in the extension configuration or in the site configuration
# sites/[site]/settings.yaml oauth2_server: privateKey: '/path/to/private.key' publicKey: '/path/to/public.key'
Copied!