mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 15:16:30 +03:00
Merge pull request #143 from gharlan/yaml-null
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
framework:
|
||||
secret: '%env(APP_SECRET)%'
|
||||
#default_locale: en
|
||||
#csrf_protection: null
|
||||
#csrf_protection: ~
|
||||
#http_method_override: true
|
||||
#trusted_hosts: null
|
||||
#trusted_hosts: ~
|
||||
# https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
|
||||
#session:
|
||||
# handler_id: session.handler.native_file
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
framework:
|
||||
test: null
|
||||
test: ~
|
||||
session:
|
||||
storage_id: session.storage.mock_file
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
framework:
|
||||
router:
|
||||
strict_requirements: null
|
||||
strict_requirements: ~
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
security:
|
||||
# https://symfony.com/doc/current/book/security.html#where-do-users-come-from-user-providers
|
||||
providers:
|
||||
in_memory: { memory: null }
|
||||
in_memory: { memory: ~ }
|
||||
firewalls:
|
||||
dev:
|
||||
pattern: ^/(_(profiler|wdt)|css|images|js)/
|
||||
security: false
|
||||
main:
|
||||
anonymous: null
|
||||
anonymous: ~
|
||||
|
||||
# activate different ways to authenticate
|
||||
|
||||
# http_basic: null
|
||||
# http_basic: ~
|
||||
# https://symfony.com/doc/current/book/security.html#a-configuring-how-your-users-will-authenticate
|
||||
|
||||
# form_login: null
|
||||
# form_login: ~
|
||||
# https://symfony.com/doc/current/cookbook/security/form_login_setup.html
|
||||
|
||||
Reference in New Issue
Block a user