security.yaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. guard:
  21. authenticators:
  22. - App\Security\LoginFormAuthenticator
  23. remember_me:
  24. secret: '%env(APP_SECRET)%'
  25. logout:
  26. path: app_logout
  27. target: app_login
  28. # activate different ways to authenticate
  29. # http_basic: true
  30. # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
  31. # form_login: true
  32. # https://symfony.com/doc/current/security/form_login_setup.html
  33. # Easy way to control access for large sections of your site
  34. # Note: Only the *first* access control that matches will be used
  35. access_control:
  36. - { path: ^/(login$|register$|motdepasseoublie$|resetpassword/token=|activate/token=|fichefilm/|$|liste-by/|liste-by_real/|recherche) , roles: IS_AUTHENTICATED_ANONYMOUSLY }
  37. - { path: ^/admin, roles: ROLE_ADMIN }
  38. - { path: ^/genre, roles: ROLE_MODERATEUR }
  39. - { path: ^/, roles: IS_AUTHENTICATED_REMEMBERED }