security.yml.saveFilm 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # To get started with security, check out the documentation:
  2. # https://symfony.com/doc/current/security.html
  3. security:
  4. encoders:
  5. App\Entity\User: sha512
  6. role_hierarchy:
  7. ROLE_ADMIN: [ROLE_USER, ROLE_MODERATEUR]
  8. ROLE_SUPER_ADMIN: [ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
  9. # https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
  10. providers:
  11. main:
  12. entity:
  13. class: App\Entity\User
  14. property: username
  15. firewalls:
  16. # disables authentication for assets and the profiler, adapt it according to your needs
  17. dev:
  18. pattern: ^/(_(profiler|wdt)|css|images|js)/
  19. security: false
  20. main:
  21. anonymous: false
  22. pattern: ^/
  23. provider: main
  24. guard:
  25. authenticators:
  26. - App\Security\LoginFormAuthenticator
  27. remember_me:
  28. secret: '%env(APP_SECRET)%'
  29. switch_user: true
  30. # activate different ways to authenticate
  31. # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
  32. #http_basic: ~
  33. # https://symfony.com/doc/current/security/form_login_setup.html
  34. #form_login: ~
  35. access_control:
  36. - { path: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=) , roles: IS_AUTHENTICATED_ANONYMOUSLY }
  37. - { path: ^/admin, roles: ROLE_ADMIN }
  38. - { path: ^/genre, roles: ROLE_MODERATEUR }