pflaenz.li-Symfony/config/packages/security.yaml

33 lines
1.1 KiB
YAML
Raw Normal View History

2021-04-22 14:42:22 +02:00
security:
2021-04-22 14:51:34 +02:00
encoders:
App\Entity\User:
algorithm: auto
2021-04-22 14:42:22 +02:00
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
providers:
2021-04-22 14:51:34 +02:00
# used to reload user from session & other features (e.g. switch_user)
app_user_provider:
entity:
class: App\Entity\User
property: email
2021-04-22 14:42:22 +02:00
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
main:
anonymous: true
lazy: true
2021-04-22 14:51:34 +02:00
provider: app_user_provider
2021-04-22 14:42:22 +02:00
# 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 }