-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathframework.yaml
43 lines (39 loc) · 1.34 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
41
42
43
# see https://symfony.com/doc/current/reference/configuration/framework.html
framework:
secret: '%env(APP_SECRET)%'
#csrf_protection: true
http_method_override: false
handle_all_throwables: true
# see https://symfony.com/doc/current/deployment/proxies.html
trusted_proxies: '%env(TRUSTED_PROXIES)%'
http_client:
default_options:
retry_failed:
enabled: true
scoped_clients:
osmcha.client:
base_uri: '%osmcha.api.url%'
headers:
Accept: 'application/json'
Authorization: '%osmcha.api.key%'
osm.client:
base_uri: '%osm.api.url%'
headers:
Accept: 'application/json'
'User-Agent': '%app.userAgent%'
# 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
php_errors:
log: true
when@test:
framework:
test: true
session:
storage_factory_id: session.storage.factory.mock_file