79 lines
3.3 KiB
YAML
79 lines
3.3 KiB
YAML
security:
|
|
# Hierarchie des rôles #
|
|
role_hierarchy:
|
|
ROLE_ORGANISATION: ROLE_USER
|
|
ROLE_ADMIN_ORGANISATION: ROLE_ORGANISATION
|
|
ROLE_ADMIN: ROLE_USER
|
|
|
|
# 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
|
|
username_parameter: _username
|
|
password_parameter: _password
|
|
default_target_path: app_home
|
|
logout:
|
|
path: app_logout
|
|
# où rediriger après la déconnexion
|
|
target: app_login
|
|
|
|
remember_me:
|
|
secret: '%kernel.secret%'
|
|
lifetime: 604800
|
|
path: /
|
|
# par défaut, le "souvenir de moi" n'est pas coché, l'utilisateur doit cliquer sur la check-box
|
|
# si on veut "souvenir de moi" activité en permanence, il faut décommenter cette ligne :
|
|
#always_remember_me: true
|
|
|
|
# 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: ^/organisation, roles: ROLE_ADMIN_ORGANISATION }
|
|
- { path: ^/user, 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
|