security: encoders: App\Entity\User: algorithm: auto # https://symfony.com/doc/current/security/experimental_authenticators.html enable_authenticator_manager: true # 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: username firewalls: dev: pattern: ^/(_(profiler|wdt)|css|images|js)/ security: false main: lazy: true provider: app_user_provider custom_authenticator: App\Security\FormLoginAuthenticator remember_me: secret: '%kernel.secret%' lifetime: 604800 # 1 week in seconds path: / login_throttling: max_attempts: 3 logout: path: app_logout # where to redirect after logout # target: app_any_route user_checker: App\Security\UserChecker # 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_SUPER_ADMIN } # - { path: ^/profile, roles: ROLE_USER }