Spookie/config/packages/security.yaml

43 lines
1.4 KiB
YAML
Raw Normal View History

2021-05-30 17:34:33 +02:00
security:
2021-06-14 19:20:55 +02:00
password_hashers:
2021-05-30 17:41:18 +02:00
App\Entity\User:
algorithm: auto
2021-05-30 17:34:33 +02:00
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
providers:
2021-05-30 17:41:18 +02:00
# used to reload user from session & other features (e.g. switch_user)
app_user_provider:
entity:
class: App\Entity\User
property: username
2021-06-14 19:20:55 +02:00
enable_authenticator_manager: true
2021-05-30 17:34:33 +02:00
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
main:
lazy: true
2021-05-30 17:41:18 +02:00
provider: app_user_provider
2021-05-30 17:44:10 +02:00
guard:
authenticators:
- App\Security\AppAuthenticator
logout:
path: app_logout
# where to redirect after logout
# target: app_any_route
2021-05-30 17:34:33 +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:
2021-06-14 19:20:55 +02:00
# - { path: ^/admin/login, roles: PUBLIC_ACCESS }
2021-05-30 17:34:33 +02:00
# - { path: ^/admin, roles: ROLE_ADMIN }
# - { path: ^/profile, roles: ROLE_USER }