caisse-bliss/config/packages/security.yaml

34 lines
1.1 KiB
YAML
Raw Normal View History

2018-03-13 15:05:52 +01: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: true
2018-04-04 16:25:25 +02:00
encoders:
MsgPhp\User\Infra\Security\SecurityUser: bcrypt
2018-03-13 15:05:52 +01:00
2018-04-04 16:25:25 +02:00
providers:
msgphp_user: { id: MsgPhp\User\Infra\Security\SecurityUserProvider }
firewalls:
main:
provider: msgphp_user
anonymous: ~
2018-03-13 15:05:52 +01:00
# activate different ways to authenticate
# http_basic: true
# https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
# form_login: true
# https://symfony.com/doc/current/security/form_login_setup.html
# Easy way to control access for large sections of your site
# Note: Only the *first* access control that matches will be used
access_control:
2018-04-04 16:25:25 +02:00
- { path: ^/admin, roles: ROLE_ADMIN }
- { path: ^/profile, roles: ROLE_USER }