nuosso/config/packages/security.yaml

55 lines
2.0 KiB
YAML
Raw Normal View History

2023-07-18 09:59:57 +02:00
security:
password_hashers:
2023-07-20 11:56:10 +02:00
Symfony\Component\Security\Core\User\LegacyPasswordAuthenticatedUserInterface:
id: 'App\Service\PasswordEncoder'
2023-07-18 09:59:57 +02:00
providers:
2023-07-20 11:56:10 +02:00
main:
entity:
class: App\Entity\User
property: username
2023-07-18 09:59:57 +02:00
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
2023-07-20 11:56:10 +02:00
main:
pattern: ^/
provider: main
context: maincontext
user_checker: App\Service\UserChecker
form_login:
login_path: app_login
check_path: app_login
default_target_path: app_home
use_referer: true
csrf_parameter: _csrf_security_token
csrf_token_id: a_private_string
2023-07-18 09:59:57 +02:00
2023-07-20 11:56:10 +02:00
logout:
invalidate_session: true
path: app_kill
target: app_home
2023-07-18 09:59:57 +02:00
access_control:
2023-07-20 11:56:10 +02:00
- { path: ^/all, roles: [ROLE_ADMIN, ROLE_MODO, ROLE_MASTER, ROLE_MANAGER, ROLE_USER] }
- { path: ^/user, roles: [ROLE_USER] }
- { path: ^/manager, roles: [ROLE_MANAGER] }
- { path: ^/master, roles: [ROLE_MASTER] }
- { path: ^/modo, roles: [ROLE_MODO] }
- { path: ^/admin, roles: [ROLE_ADMIN] }
2023-07-18 09:59:57 +02:00
when@test:
security:
password_hashers:
# By default, password hashers are resource intensive and take time. This is
# important to generate secure password hashes. In tests however, secure hashes
# are not important, waste resources and increase test times. The following
# reduces the work factor to the lowest possible values.
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