Skip to content

Commit 0d7f91f

Browse files
Apply suggestions from code review
1 parent 03d93a0 commit 0d7f91f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/spring-apps/enterprise/how-to-enterprise-deploy-static-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Your configuration file must conform to the restrictions described in the follow
267267
|----------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------|-----------------------------------------------|
268268
| 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}"` |
269269
| 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** | |
271271
| 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. |
272272

273273
## Buildpack bindings

0 commit comments

Comments
 (0)