mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-03-24 00:32:17 +01:00
13 lines
622 B
YAML
13 lines
622 B
YAML
league_oauth2_server:
|
|
authorization_server:
|
|
private_key: /var/oauth/private.key # Change this
|
|
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: /var/oauth/public.key # Change this
|
|
scopes:
|
|
available: [EMAIL] # Change this
|
|
default: [EMAIL] # Change this
|
|
persistence:
|
|
doctrine: null
|