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
| Listening port | Web server must listen on port 8080. The service checks the port on TCP for readiness and whether it's live. You must use the templated variable `PORT` in the configuration file. The appropriate port number is injected when the web server is launched. |`listen {{PORT}}`|`Listen "${PORT}"`|
269
269
| Log path | Config log path to the console. |`access_log /dev/stdout`, `error_log stderr`|`ErrorLog /proc/self/fd/2`|
270
-
| File path with write permission | Web server is granted write permission to the */tmp* directory. Configuring the full path requires write permission under the */tmp* directory. | For example: **client_body_temp_path /tmp/client_body_temp**||
270
+
| File path with write permission | Web server is granted write permission to the **/tmp** directory. Configuring the full path requires write permission under the **/tmp** directory. | For example: **client_body_temp_path /tmp/client_body_temp**||
271
271
| Maximum accepted body size of client request | Web server is behind the gateway. The maximum accepted body size of the client request is set to 500 m in the gateway and the value for web server must be less than 500 m. |`client_max_body_size` should be less than 500 m. |`LimitRequestBody` should be less than 500 m. |
0 commit comments