Skip to content

Commit 006d69e

Browse files
markshusth3xxpiotrkwiecinski
authored
Fix upload memory limit (#1307)
Co-authored-by: Dan Church <[email protected]> Co-authored-by: Piotr Kwiecinski <[email protected]>
1 parent 919ae17 commit 006d69e

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build-nginx-1-24.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
push: true
3434
tags: |
3535
markoshust/magento-nginx:1.24
36-
markoshust/magento-nginx:1.24-0
36+
markoshust/magento-nginx:1.24-1

compose/compose.dev.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,10 @@ services:
2828
- "8080:80"
2929
depends_on:
3030
- db
31+
32+
## Selenium support, uncomment to enable
33+
#selenium:
34+
# image: selenium/standalone-chrome-debug:3.8.1
35+
# ports:
36+
# - "5900:5900"
37+
# extra_hosts: *appextrahosts

compose/compose.yaml

-7
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,6 @@ services:
135135
# - "8307"
136136
# env_file: env/blackfire.env
137137

138-
## Selenium support, uncomment to enable
139-
#selenium:
140-
# image: selenium/standalone-chrome-debug:3.8.1
141-
# ports:
142-
# - "5900:5900"
143-
# extra_hosts: *appextrahosts
144-
145138
volumes:
146139
appdata:
147140
dbdata:

images/nginx/1.24/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM nginx:1.24-alpine
2-
MAINTAINER Mark Shust <[email protected]>
2+
LABEL maintainer="Mark Shust <[email protected]>"
33

44
ARG APP_ID=1000
55

images/nginx/1.24/conf/nginx.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ http {
3030

3131
#gzip on;
3232

33-
client_max_body_size 20M;
33+
client_max_body_size 100M;
3434

3535
include /etc/nginx/conf.d/*.conf;
3636
}

0 commit comments

Comments
 (0)