mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 21:51:50 +02:00
24 lines
859 B
YAML
24 lines
859 B
YAML
![]() |
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: ~
|
||
|
|
||
|
# 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: ^/schedule, roles: ROLE_USER }
|
||
|
- { path: ^/scheduled, roles: ROLE_USER }
|