2018-09-01 22:18:13 +02:00
|
|
|
security:
|
|
|
|
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
|
2018-09-06 16:12:55 +02:00
|
|
|
encoders:
|
2018-09-13 02:24:25 +02:00
|
|
|
FOS\UserBundle\Model\UserInterface: bcrypt
|
2018-09-01 22:18:13 +02:00
|
|
|
providers:
|
2018-09-13 02:24:25 +02:00
|
|
|
fos_userbundle:
|
|
|
|
id: fos_user.user_provider.username
|
|
|
|
role_hierarchy:
|
|
|
|
ROLE_ADMIN: ROLE_USER
|
|
|
|
ROLE_SUPER_ADMIN: ROLE_ADMIN
|
2018-09-12 18:51:43 +02:00
|
|
|
hide_user_not_found: false
|
2018-09-01 22:18:13 +02:00
|
|
|
firewalls:
|
|
|
|
dev:
|
|
|
|
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
|
|
|
security: false
|
|
|
|
main:
|
|
|
|
anonymous: true
|
2018-09-06 16:46:33 +02:00
|
|
|
form_login:
|
2018-09-13 02:24:25 +02:00
|
|
|
provider: fos_userbundle
|
|
|
|
csrf_token_generator: security.csrf.token_manager
|
|
|
|
logout: true
|
|
|
|
|
2018-09-01 22:18:13 +02:00
|
|
|
# activate different ways to authenticate
|
|
|
|
|
|
|
|
# http_basic: true
|
|
|
|
# https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
|
|
|
|
# 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-09-13 02:24:25 +02:00
|
|
|
- { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
|
|
- { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
|
|
- { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
|
|
|
|
- { path: ^/admin/, role: ROLE_ADMIN }
|