Skip to content

Instantly share code, notes, and snippets.

@andrechavesg
Created February 4, 2019 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrechavesg/dd52b5c032baf95e281a58bbbc07f393 to your computer and use it in GitHub Desktop.
Save andrechavesg/dd52b5c032baf95e281a58bbbc07f393 to your computer and use it in GitHub Desktop.
security:
encoders:
App\Entity\User:
algorithm: bcrypt
# 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\Usuario
property: login
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
main:
anonymous: true
guard:
authenticators:
- App\Security\LoginFormAuthenticator
oauth:
resource_owners:
facebook: "/login/check-facebook"
login_path: /oauth/login
use_forward: false
failure_path: /login
oauth_user_provider:
service: oauth_user_provider
# 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: ^/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