mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
52 lines
2.1 KiB
YAML
52 lines
2.1 KiB
YAML
security:
|
|
# https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
|
|
password_hashers:
|
|
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
|
|
|
|
# https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
|
|
providers:
|
|
# used to reload user from session & other features (e.g. switch_user)
|
|
tvdt_user_provider:
|
|
entity:
|
|
class: Tvdt\Entity\User
|
|
property: email
|
|
# used to reload user from session & other features (e.g. switch_user)
|
|
firewalls:
|
|
dev:
|
|
# Ensure dev tools and static assets are always allowed
|
|
pattern: ^/(_profiler|_wdt|assets|build)/
|
|
security: false
|
|
main:
|
|
lazy: true
|
|
provider: tvdt_user_provider
|
|
form_login:
|
|
login_path: tvdt_login_login
|
|
check_path: tvdt_login_login
|
|
enable_csrf: true
|
|
default_target_path: tvdt_backoffice_index
|
|
logout:
|
|
path: tvdt_login_logout
|
|
# where to redirect after logout
|
|
# target: tvdt_any_route
|
|
|
|
# activate different ways to authenticate
|
|
# https://symfony.com/doc/current/security.html#the-firewall
|
|
|
|
# https://symfony.com/doc/current/security/impersonating_user.html
|
|
# switch_user: true
|
|
|
|
access_control:
|
|
- { path: ^/admin, roles: ROLE_ADMIN }
|
|
- { path: ^/backoffice, roles: ROLE_USER }
|
|
|
|
when@test:
|
|
security:
|
|
password_hashers:
|
|
# Password hashers are resource-intensive by design to ensure security.
|
|
# In tests, it's safe to reduce their cost to improve performance.
|
|
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface:
|
|
algorithm: auto
|
|
cost: 4 # Lowest possible value for bcrypt
|
|
time_cost: 3 # Lowest possible value for argon
|
|
memory_cost: 10 # Lowest possible value for argon
|