PHP Classes

File: config/packages/security.yaml

Recommend this page to a friend!
  Classes of Paulo Henrique   PHP Personal Finance App API   config/packages/security.yaml   Download  
File: config/packages/security.yaml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Personal Finance App API
Provides an API to control personal expenses
Author: By
Last change:
Date: 4 years ago
Size: 1,507 bytes
 

Contents

Class file image Download
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: ^/((api/v1)|(register)|(authenticate-demo)|(authenticate)|(google-authenticate)|(oauth-authenticate))$ security: false main: stateless: true guard: provider: app_user_provider authenticators: - App\Security\TokenAuthenticator - App\Security\GoogleAuthenticator entry_point: App\Security\TokenAuthenticator # 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: ^/documentation, roles: IS_AUTHENTICATED_ANONYMOUSLY } # - { path: ^/api, roles: IS_AUTHENTICATED_FULLY }