44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
security:
|
|
enable_authenticator_manager: true
|
|
encoders:
|
|
App\Entity\User:
|
|
algorithm: bcrypt
|
|
cost: 12
|
|
|
|
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
|
|
providers:
|
|
# used to reload user from session & other features (e.g. switch_user)
|
|
app_user_provider:
|
|
entity:
|
|
class: App\Entity\User
|
|
property: email
|
|
firewalls:
|
|
dev:
|
|
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
|
security: false
|
|
main:
|
|
anonymous: false
|
|
lazy: true
|
|
provider: app_user_provider
|
|
guard:
|
|
authenticators:
|
|
- App\Security\LoginFormAuthenticator
|
|
logout:
|
|
path: security_logout
|
|
target: /
|
|
delete_cookies: ['CABINET_SESSION', 'WR_SESSION', 'WR_FLASH', 'PLAY_SESSION', 'WR_DETAIL', 'region']
|
|
# where to redirect after logout
|
|
# target: app_any_route
|
|
|
|
# activate different ways to authenticate
|
|
# https://symfony.com/doc/current/security.html#firewalls-authentication
|
|
|
|
# https://symfony.com/doc/current/security/impersonating_user.html
|
|
# switch_user: true
|
|
|
|
# Easy way to control access for large sections of your site
|
|
# Note: Only the *first* access control that matches will be used
|
|
access_control:
|
|
# - { path: ^/admin, roles: ROLE_ADMIN }
|
|
# - { path: ^/profile, roles: ROLE_USER }
|