highmed / highmed-dsf

HiGHmed Data Sharing Framework funded by the German Federal Ministry of Education and Research (BMBF, grant ids: 01ZZ1802E and 01ZZ1802A)
Apache License 2.0
32 stars 20 forks source link

adds environment variables to set connection and read timeout in seconds #324

Closed hhund closed 2 years ago

hhund commented 2 years ago

Connection and read timeouts between the reverse proxy and the app server can now be configured via environment variables in seconds. Variable are named after the apache mod_proxy ProxyPass parameters timeout (read timeout) and connectiontimeout (connect timeout). Default values are:

PROXY_PASS_TIMEOUT_HTTP=60
PROXY_PASS_TIMEOUT_WS=60
PROXY_PASS_CONNECTION_TIMEOUT_HTTP=30
PROXY_PASS_CONNECTION_TIMEOUT_WS=30

closes #313