2021-05-30 17:18:58 +02:00
|
|
|
# see https://symfony.com/doc/current/reference/configuration/framework.html
|
|
|
|
framework:
|
|
|
|
secret: '%env(APP_SECRET)%'
|
2022-11-01 14:57:36 +01:00
|
|
|
csrf_protection: true
|
2022-04-11 17:41:46 +02:00
|
|
|
http_method_override: false
|
2021-05-30 17:18:58 +02:00
|
|
|
|
|
|
|
# Enables session support. Note that the session will ONLY be started if you read or write from it.
|
|
|
|
# Remove or comment this section to explicitly disable session support.
|
|
|
|
session:
|
2022-04-11 17:41:46 +02:00
|
|
|
handler_id: null
|
|
|
|
cookie_secure: auto
|
|
|
|
cookie_samesite: lax
|
|
|
|
storage_factory_id: session.storage.factory.native
|
2021-05-30 17:18:58 +02:00
|
|
|
|
|
|
|
#esi: true
|
|
|
|
#fragments: true
|
|
|
|
php_errors:
|
|
|
|
log: true
|
2022-04-11 17:41:46 +02:00
|
|
|
|
|
|
|
when@test:
|
|
|
|
framework:
|
|
|
|
test: true
|
|
|
|
session:
|
|
|
|
storage_factory_id: session.storage.factory.mock_file
|