security.yaml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. security:
  2. encoders:
  3. App\Entity\User: sha512
  4. # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
  5. role_hierarchy:
  6. ROLE_ADMIN: [ROLE_USER, ROLE_MODERATEUR]
  7. ROLE_SUPER_ADMIN: [ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
  8. # https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
  9. providers:
  10. main:
  11. entity:
  12. class: App\Entity\User
  13. property: username
  14. firewalls:
  15. dev:
  16. pattern: ^/(_(profiler|wdt)|css|images|js)/
  17. security: false
  18. main:
  19. anonymous: ~
  20. user_checker: App\Security\UserChecker
  21. guard:
  22. authenticators:
  23. - App\Security\LoginFormAuthenticator
  24. remember_me:
  25. secret: '%env(APP_SECRET)%'
  26. logout:
  27. path: app_logout
  28. target: app_login
  29. # activate different ways to authenticate
  30. # http_basic: true
  31. # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
  32. # form_login: true
  33. # https://symfony.com/doc/current/security/form_login_setup.html
  34. # Easy way to control access for large sections of your site
  35. # Note: Only the *first* access control that matches will be used
  36. access_control:
  37. - { path: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=|fichefilm/|$|liste-by/|liste-by_real/|recherche) , roles: IS_AUTHENTICATED_ANONYMOUSLY }
  38. - { path: ^/admin, roles: ROLE_ADMIN }
  39. - { path: ^/genre, roles: ROLE_MODERATEUR }
  40. - { path: ^/, roles: IS_AUTHENTICATED_REMEMBERED }