61 lines
2.6 KiB
YAML
61 lines
2.6 KiB
YAML
security:
|
|
# https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
|
|
# comment sont hachés nos mots de passe
|
|
password_hashers:
|
|
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
|
|
|
|
# https://symfony.com/doc/current/security.html#loading-the-user-the-user-provider
|
|
# d'où viennent nos utilisateurs ?
|
|
providers:
|
|
# used to reload user from session & other features (e.g. switch_user)
|
|
app_user_provider: # un nom unique
|
|
entity: # nos utilisateurs sont en base de données
|
|
class: App\Entity\User # c'est cette entité-là
|
|
property: email # représentée par cette propriété-ci
|
|
|
|
# activation du système de sécurité
|
|
firewalls:
|
|
# permet de désactiver sur la debug bar, le profiler, etc...
|
|
dev:
|
|
# Ensure dev tools and static assets are always allowed
|
|
pattern: ^/(_profiler|_wdt|assets|build)/
|
|
security: false
|
|
# notre pare-feu principal, activé partout par défaut
|
|
main:
|
|
lazy: true
|
|
provider: app_user_provider
|
|
# Le formulaire de connexion sera automatiquement protégé des attaques CSRF.
|
|
# La classe FormLoginAuthenticator est automatiquement utilisée en interne par Symfony,
|
|
# il n'y a plus de classe de type Authenticator à gérer soi-même.
|
|
form_login:
|
|
login_path: app_login
|
|
check_path: app_login
|
|
enable_csrf: true
|
|
logout:
|
|
path: app_logout
|
|
# where to redirect after logout
|
|
# target: app_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
|
|
|
|
# Note: Only the *first* matching rule is applied
|
|
# autorisations
|
|
access_control:
|
|
# - { path: ^/admin, roles: ROLE_ADMIN }
|
|
# - { path: ^/profile, 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
|