mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 07:36:30 +03:00
19 lines
629 B
YAML
19 lines
629 B
YAML
security:
|
|
# https://symfony.com/doc/current/book/security.html#where-do-users-come-from-user-providers
|
|
providers:
|
|
in_memory: { memory: null }
|
|
firewalls:
|
|
dev:
|
|
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
|
security: false
|
|
main:
|
|
anonymous: null
|
|
|
|
# activate different ways to authenticate
|
|
|
|
# http_basic: null
|
|
# https://symfony.com/doc/current/book/security.html#a-configuring-how-your-users-will-authenticate
|
|
|
|
# form_login: null
|
|
# https://symfony.com/doc/current/cookbook/security/form_login_setup.html
|