20 lines
586 B
YAML
20 lines
586 B
YAML
trikoder_oauth2:
|
|
|
|
authorization_server:
|
|
private_key: '%kernel.project_dir%/var/oauth/private.key'
|
|
private_key_passphrase: null # Passphrase of the private key, if any
|
|
|
|
encryption_key: '%env(string:OAUTH2_ENCRYPTION_KEY)%' # (Optional) Change this
|
|
|
|
resource_server:
|
|
public_key: '%kernel.project_dir%/var/oauth/public.key'
|
|
|
|
persistence:
|
|
doctrine: null
|
|
|
|
# Scopes that you wish to utilize in your application.
|
|
# This should be a simple array of strings.
|
|
scopes:
|
|
- read
|
|
- write
|
|
- follow |