File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ Image can be configured by setting environment variables.
36
36
| ` ENCRYPTION_PASSWORD ` | Encryption password | ` lowcoder.org ` |
37
37
| ` ENCRYPTION_SALT ` | Salt used for encrypting password | ` lowcoder.org ` |
38
38
| ` CORS_ALLOWED_DOMAINS ` | CORS allowed domains | ` * ` |
39
- | ` LOWCODER_MAX_REQUEST_SIZE ` | Lowcoder max request size | ` 5m ` |
39
+ | ` LOWCODER_MAX_REQUEST_SIZE ` | Lowcoder max request size | ` 20m ` |
40
40
| ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
41
41
| ` LOWCODER_NODE_SERVICE_URL ` | Lowcoder Node service (js executor) URL | ` http://localhost:6060 ` |
42
42
| ` DEFAULT_ORGS_PER_USER ` | Default maximum organizations per user | ` 100 ` |
@@ -122,7 +122,7 @@ Image can be configured by setting environment variables.
122
122
| --------------------------------| --------------------------------------------------------------------| ------------------------------------------------------- |
123
123
| ` PUID ` | ID of user running services. It will own all created logs and data. | ` 9001 ` |
124
124
| ` PGID ` | ID of group of the user running services. | ` 9001 ` |
125
- | ` LOWCODER_MAX_REQUEST_SIZE ` | Lowcoder max request size | ` 5m ` |
125
+ | ` LOWCODER_MAX_REQUEST_SIZE ` | Lowcoder max request size | ` 20m ` |
126
126
| ` LOWCODER_API_SERVICE_URL ` | Lowcoder API service URL | ` http://localhost:8080 ` |
127
127
| ` LOWCODER_NODE_SERVICE_URL ` | Lowcoder Node service (js executor) URL | ` http://localhost:6060 ` |
128
128
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ services:
75
75
environment :
76
76
PUID : " 9001"
77
77
PGID : " 9001"
78
- LOWCODER_MAX_REQUEST_SIZE : 5m
78
+ LOWCODER_MAX_REQUEST_SIZE : 20m
79
79
LOWCODER_API_SERVICE_URL : " http://lowcoder-api-service:8080"
80
80
LOWCODER_NODE_SERVICE_URL : " http://lowcoder-node-service:6060"
81
81
restart : unless-stopped
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ services:
37
37
LOWCODER_API_SERVICE_URL : " http://localhost:8080"
38
38
LOWCODER_NODE_SERVICE_URL : " http://localhost:6060"
39
39
# frontend parameters
40
- LOWCODER_MAX_REQUEST_SIZE : 5m
40
+ LOWCODER_MAX_REQUEST_SIZE : 20m
41
41
volumes :
42
42
- ./lowcoder-stacks:/lowcoder-stacks
43
43
restart : unless-stopped
Original file line number Diff line number Diff line change 18
18
ln -s /etc/nginx/nginx-http.conf /etc/nginx/nginx.conf
19
19
fi ;
20
20
21
- sed -i " s@__LOWCODER_MAX_REQUEST_SIZE__@${LOWCODER_MAX_REQUEST_SIZE:= 5m } @" /etc/nginx/nginx.conf
21
+ sed -i " s@__LOWCODER_MAX_REQUEST_SIZE__@${LOWCODER_MAX_REQUEST_SIZE:= 20m } @" /etc/nginx/nginx.conf
22
22
sed -i " s@__LOWCODER_API_SERVICE_URL__@${LOWCODER_API_SERVICE_URL:= http:// localhost: 8080} @" /etc/nginx/nginx.conf
23
23
sed -i " s@__LOWCODER_NODE_SERVICE_URL__@${LOWCODER_NODE_SERVICE_URL:= http:// localhost: 6060} @" /etc/nginx/nginx.conf
24
24
25
25
echo " nginx config updated with:"
26
- echo " Lowcoder max upload size: ${LOWCODER_MAX_REQUEST_SIZE:= 5m } "
26
+ echo " Lowcoder max upload size: ${LOWCODER_MAX_REQUEST_SIZE:= 20m } "
27
27
echo " Lowcoder api service URL: ${LOWCODER_API_SERVICE_URL:= http:// localhost: 8080} "
28
28
echo " Lowcoder node service URL: ${LOWCODER_NODE_SERVICE_URL:= http:// localhost: 6060} "
You can’t perform that action at this time.
0 commit comments