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
{{ message }}
This repository was archived by the owner on Mar 15, 2024. It is now read-only.
- `address` - (string) host and port
- `disabled` - (bool) to disable server
- `read_timeout` - (duration) is the maximum duration for reading the entire request, including the body
- `read_header_timeout` - (duration) is the amount of time allowed to read request headers
- `write_timeout` - (duration) is the maximum duration before timing out writes of the response
- `idle_timeout` - (duration) is the maximum amount of time to wait for the next request when keep-alives are enabled
- `max_header_bytes` - (int) controls the maximum number of bytes the server will read parsing the request header's keys and values, including the request line
- `shutdown_timeout` - (duration) context timeout for stopping server
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -313,6 +313,16 @@ API_ADDRESS=string
313
313
API_SHUTDOWN_TIMEOUT=duration
314
314
```
315
315
316
+
**Possible options**:
317
+
-`address` - (string) host and port
318
+
-`disabled` - (bool) to disable server
319
+
-`read_timeout` - (duration) is the maximum duration for reading the entire request, including the body
320
+
-`read_header_timeout` - (duration) is the amount of time allowed to read request headers
321
+
-`write_timeout` - (duration) is the maximum duration before timing out writes of the response
322
+
-`idle_timeout` - (duration) is the maximum amount of time to wait for the next request when keep-alives are enabled
323
+
-`max_header_bytes` - (int) controls the maximum number of bytes the server will read parsing the request header's keys and values, including the request line
324
+
-`shutdown_timeout` - (duration) context timeout for stopping server
0 commit comments