1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- security:
-
- password_hashers:
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
-
- providers:
-
- app_user_provider:
- entity:
- class: App\Entity\User
- property: email
- firewalls:
- dev:
- pattern: ^/(_(profiler|wdt)|css|images|js)/
- security: false
- main:
- pattern: ^/
- lazy: true
- provider: app_user_provider
- login_link:
- check_route: login_check
- signature_properties: ['id', 'email']
- entry_point: App\Security\CustomEntryPoint
- logout:
- path: app_logout
- target: /login
- remember_me:
- secret: '%kernel.secret%'
- path: /
-
-
-
-
-
-
- access_control:
-
-
- - { path: ^/login, roles: PUBLIC_ACCESS }
- - { path: ^/, roles: ROLE_USER }
- when@test:
- security:
- password_hashers:
-
-
-
-
- Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
- algorithm: auto
- cost: 4
- time_cost: 3
- memory_cost: 10
|