Per-request bounds so a single slow/hung provider can't stall the whole request indefinitely once fetching happens concurrently.
14 lines
429 B
YAML
14 lines
429 B
YAML
framework:
|
|
secret: '%env(APP_SECRET)%'
|
|
http_method_override: false
|
|
handle_all_throwables: true
|
|
php_errors:
|
|
log: true
|
|
cache:
|
|
app: cache.adapter.filesystem
|
|
default_redis_provider: 'redis://localhost'
|
|
http_client:
|
|
default_options:
|
|
timeout: 10 # connect + wait-for-first-byte cap per request
|
|
max_duration: 15 # hard cap on total request duration
|