|
- security:
- # https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
- providers:
- my_entity_users:
- entity:
- class: App\Entity\EntUser
-
- firewalls:
- dev:
- pattern: ^/(_(profiler|wdt)|css|images|js)/
- security: false
- main:
- anonymous: ~
-
- guard:
- authenticators:
- - json_guard_authenticator
-
- logout:
- path: /logout
-
- # activate different ways to authenticate
-
- # http_basic: true
- # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
-
- # form_login: true
- # https://symfony.com/doc/current/security/form_login_setup.html
-
- # Easy way to control access for large sections of your site
- # Note: Only the *first* access control that matches will be used
- access_control:
- # - { path: ^/images, roles: ROLE_VIEWER }
- # - { path: ^/profile, roles: ROLE_USER }
|