diff --git a/docs/_docs/getting-started/configuration.md b/docs/_docs/getting-started/configuration.md index f688ad1aa8..2053f34a45 100644 --- a/docs/_docs/getting-started/configuration.md +++ b/docs/_docs/getting-started/configuration.md @@ -268,6 +268,12 @@ alpine.ldap.team.synchronization=false # alpine.http.proxy.password= # alpine.no.proxy=localhost,127.0.0.1 +# Optional +# HTTP Outbound Connection Timeout Settings. All values are in seconds. +# alpine.http.timeout.connection=30 +# alpine.http.timeout.socket=30 +# alpine.http.timeout.pool=60 + # Optional # Cross-Origin Resource Sharing (CORS) headers to include in REST responses. # If 'alpine.cors.enabled' is true, CORS headers will be sent, if false, no diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index f7989da8eb..b39e630d35 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -235,6 +235,12 @@ alpine.ldap.team.synchronization=false # alpine.http.proxy.password= # alpine.no.proxy=localhost,127.0.0.1 +# Optional +# HTTP Outbound Connection Timeout Settings. All values are in seconds. +# alpine.http.timeout.connection=30 +# alpine.http.timeout.socket=30 +# alpine.http.timeout.pool=60 + # Optional # Cross-Origin Resource Sharing (CORS) headers to include in REST responses. # If 'alpine.cors.enabled' is true, CORS headers will be sent, if false, no