2019-08-08 17:29:59 +02:00
|
|
|
security:
|
|
|
|
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
|
|
|
|
providers:
|
|
|
|
in_memory: { memory: ~ }
|
|
|
|
firewalls:
|
|
|
|
dev:
|
|
|
|
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
|
|
|
security: false
|
|
|
|
main:
|
|
|
|
anonymous: ~
|
2019-08-10 15:30:54 +02:00
|
|
|
logout:
|
|
|
|
path: logout
|
2019-08-08 17:29:59 +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 }
|
2019-08-22 10:35:28 +02:00
|
|
|
- { path: ^/(en|fr|nl|pt)?/schedule, roles: ROLE_USER }
|
|
|
|
- { path: ^/(en|fr|nl|pt)?/scheduled, roles: ROLE_USER }
|