You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,21 @@ The service requires the following configuration parameters:
104
104
- <aid="properties/port"></a>**`port`***(integer)*: Port to expose the server on the specified host. Default: `8080`.
105
105
- <aid="properties/auto_reload"></a>**`auto_reload`***(boolean)*: A development feature. Set to `True` to automatically reload the server upon code changes. Default: `false`.
106
106
- <aid="properties/workers"></a>**`workers`***(integer)*: Number of workers processes to run. Default: `1`.
107
+
- <aid="properties/timeout_keep_alive"></a>**`timeout_keep_alive`***(integer)*: The time in seconds to keep an idle connection open for subsequent requests before closing it. This value should be higher than the timeout used by any client or reverse proxy to avoid premature connection closures. Default: `90`.
108
+
109
+
Examples:
110
+
```json
111
+
5
112
+
```
113
+
114
+
```json
115
+
90
116
+
```
117
+
118
+
```json
119
+
5400
120
+
```
121
+
107
122
- <aid="properties/api_root_path"></a>**`api_root_path`***(string)*: Root path at which the API is reachable. This is relative to the specified host and port. Default: `""`.
108
123
- <aid="properties/openapi_url"></a>**`openapi_url`***(string)*: Path to get the openapi specification in JSON format. This is relative to the specified host and port. Default: `"/openapi.json"`.
109
124
- <aid="properties/docs_url"></a>**`docs_url`***(string)*: Path to host the swagger documentation. This is relative to the specified host and port. Default: `"/docs"`.
0 commit comments