Skip to content

Instantly share code, notes, and snippets.

@yusufbiberoglu
Created August 27, 2020 22:42
Show Gist options
  • Save yusufbiberoglu/2d909c81e8a6ad9768701f302c69bd89 to your computer and use it in GitHub Desktop.
Save yusufbiberoglu/2d909c81e8a6ad9768701f302c69bd89 to your computer and use it in GitHub Desktop.
security:
encoders:
App\Entity\User:
algorithm: auto
# https://symfony.com/doc/current/security.html#where-do-users-come-from-user-providers
providers:
# used to reload user from session & other features (e.g. switch_user)
app_user_provider:
entity:
class: App\Entity\User
property: email
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
api:
pattern: ^/
stateless: true
anonymous: true
provider: app_user_provider
guard:
authenticators:
- lexik_jwt_authentication.jwt_token_authenticator
json_login:
check_path: /authentication
success_handler: lexik_jwt_authentication.handler.authentication_success
failure_handler: lexik_jwt_authentication.handler.authentication_failure
main:
anonymous: true
lazy: true
provider: app_user_provider
# activate different ways to authenticate
# https://symfony.com/doc/current/security.html#firewalls-authentication
# https://symfony.com/doc/current/security/impersonating_user.html
# switch_user: true
# 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: ^/admin, roles: ROLE_ADMIN }
# - { path: ^/profile, roles: ROLE_USER }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment