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:
|
|
|
|
App\Entity\User:
|
|
|
|
algorithm: bcrypt
|
2018-09-01 22:18:13 +02:00
|
|
|
providers:
|
2018-09-06 16:12:55 +02:00
|
|
|
our_db_provider:
|
|
|
|
entity:
|
|
|
|
class: App\Entity\User
|
|
|
|
property: username
|
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:
|
|
|
|
login_path: login
|
|
|
|
check_path: login
|
2018-09-12 19:28:39 +02:00
|
|
|
logout:
|
|
|
|
path: /logout
|
|
|
|
target: /
|
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
|
|
|
|
|
|
|
|
# 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:
|
|
|
|
# - { path: ^/admin, roles: ROLE_ADMIN }
|
|
|
|
# - { path: ^/profile, roles: ROLE_USER }
|