You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
41 lines
1.5 KiB
security:
|
|
encoders:
|
|
App\Entity\User:
|
|
algorithm: auto
|
|
|
|
# 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: true
|
|
lazy: true
|
|
provider: app_user_provider
|
|
guard:
|
|
authenticators:
|
|
- App\Security\PokedexAuthenticator
|
|
logout:
|
|
path: app_logout
|
|
# 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: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/register, roles: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
- { path: ^/, roles: IS_AUTHENTICATED_FULLY }
|
|
|