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
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,11 @@ environment variables that you can set.
85
85
|`BAD_GATEWAY_PAGE`| Path to an HTML file to serve when the backend server returns a 502 Bad Gateway error. If there is no file at the specific path, Thruster will serve an empty 502 response instead. Because Thruster boots very quickly, a custom page can be a useful way to show that your application is starting up. |`./public/502.html`|
86
86
|`HTTP_PORT`| The port to listen on for HTTP traffic. | 80 |
87
87
|`HTTPS_PORT`| The port to listen on for HTTPS traffic. | 443 |
88
+
|`HTTP_HEALTH_PATH`| The http health path to check before start port listening. | None |
89
+
|`HTTP_HEALTH_HOST`| The http health host to check before start port listening. | 127.0.0.1 |
90
+
|`HTTP_HEALTH_INTERVAL`| The http health path check interval (seconds). | 1 |
91
+
|`HTTP_HEALTH_TIMEOUT`| The http health path check timeout (seconds). | 1 |
92
+
|`HTTP_HEALTH_DEADLINE`| The http health path deadline interval (seconds), after which thruster will exit with error, if no success response. | 120 |
88
93
|`HTTP_IDLE_TIMEOUT`| The maximum time in seconds that a client can be idle before the connection is closed. | 60 |
89
94
|`HTTP_READ_TIMEOUT`| The maximum time in seconds that a client can take to send the request headers and body. | 30 |
90
95
|`HTTP_WRITE_TIMEOUT`| The maximum time in seconds during which the client must read the response. | 30 |
0 commit comments