Commit
·
8b00b96
1
Parent(s):
28d7c08
Update comment (#3981)
Browse files### What problem does this PR solve?
_Briefly describe what this PR aims to solve. Include background context
that will help reviewers understand the purpose of the PR._
### Type of change
- [x] Documentation Update
---------
Signed-off-by: Jin Hai <[email protected]>
Co-authored-by: writinwaters <[email protected]>
- docker/.env +1 -0
- docker/README.md +1 -1
- helm/values.yaml +1 -0
docker/.env
CHANGED
@@ -128,6 +128,7 @@ TIMEZONE='Asia/Shanghai'
|
|
128 |
# The maximum file size for each uploaded file, in bytes.
|
129 |
# You can uncomment this line and update the value if you wish to change the 128M file size limit
|
130 |
# MAX_CONTENT_LENGTH=134217728
|
|
|
131 |
|
132 |
# The log level for the RAGFlow's owned packages and imported packages.
|
133 |
# Available level:
|
|
|
128 |
# The maximum file size for each uploaded file, in bytes.
|
129 |
# You can uncomment this line and update the value if you wish to change the 128M file size limit
|
130 |
# MAX_CONTENT_LENGTH=134217728
|
131 |
+
# After making the change, ensure you update `client_max_body_size` in nginx/nginx.conf correspondingly.
|
132 |
|
133 |
# The log level for the RAGFlow's owned packages and imported packages.
|
134 |
# Available level:
|
docker/README.md
CHANGED
@@ -120,7 +120,7 @@ The [.env](./.env) file contains important environment variables for Docker.
|
|
120 |
### Maximum file size
|
121 |
|
122 |
- `MAX_CONTENT_LENGTH`
|
123 |
-
The maximum file size for each uploaded file, in bytes. You can uncomment this line if you wish to change the 128M file size limit.
|
124 |
|
125 |
## 🐋 Service configuration
|
126 |
|
|
|
120 |
### Maximum file size
|
121 |
|
122 |
- `MAX_CONTENT_LENGTH`
|
123 |
+
The maximum file size for each uploaded file, in bytes. You can uncomment this line if you wish to change the 128M file size limit. After making the change, ensure you update `client_max_body_size` in nginx/nginx.conf correspondingly.
|
124 |
|
125 |
## 🐋 Service configuration
|
126 |
|
helm/values.yaml
CHANGED
@@ -60,6 +60,7 @@ env:
|
|
60 |
# The maximum file size for each uploaded file, in bytes.
|
61 |
# You can uncomment this line and update the value if you wish to change 128M file size limit
|
62 |
# MAX_CONTENT_LENGTH: "134217728"
|
|
|
63 |
|
64 |
ragflow:
|
65 |
deployment:
|
|
|
60 |
# The maximum file size for each uploaded file, in bytes.
|
61 |
# You can uncomment this line and update the value if you wish to change 128M file size limit
|
62 |
# MAX_CONTENT_LENGTH: "134217728"
|
63 |
+
# After making the change, ensure you update `client_max_body_size` in nginx/nginx.conf correspondingly.
|
64 |
|
65 |
ragflow:
|
66 |
deployment:
|