-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathframework.yaml
40 lines (33 loc) · 1.18 KB
/
framework.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# see https://symfony.com/doc/current/reference/configuration/framework.html
framework:
secret: '%env(APP_SECRET)%'
csrf_protection: false
annotations: false
http_method_override: false
handle_all_throwables: true
default_locale: '%locale%'
# see https://symfony.com/doc/current/deployment/proxies.html
trusted_proxies: '%env(TRUSTED_PROXIES)%'
trusted_headers: [ 'x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto', 'x-forwarded-port', 'x-forwarded-prefix' ]
translator:
default_path: '%kernel.project_dir%/translations'
serializer:
enable_attributes: true
php_errors:
log: true
# 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:
handler_id: null
cookie_secure: auto
cookie_samesite: lax
storage_factory_id: session.storage.factory.native
#esi: true
#fragments: true
when@test:
framework:
test: true
profiler:
collect: false
session:
storage_factory_id: session.storage.factory.mock_file