Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Allow equally large uploads via drush cli as via fpm. #374

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ BASE=lol

SEVEN=0
EIGHT=0
EIGHTONE=1
EIGHTONE=0
EIGHTTWO=1
EIGHTTHREE=1
EIGHTFOUR=1
EIGHTFOUR=0


BASE7=3.15-202203-01
Expand All @@ -24,7 +24,7 @@ VERSION82=8.2.26-r0
VERSION83=8.3.14-r0
VERSION84=8.4.1-r0

EXTRAVERSION=-202411-01
EXTRAVERSION=-202412-01

STABILITY=stable
REGISTRY=public.ecr.aws/unocha
Expand Down
4 changes: 2 additions & 2 deletions php/base/php82/etc/php82/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ auto_globals_jit = On
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; https://php.net/post-max-size
post_max_size = 8M
post_max_size = ${PHP_POST_MAX_SIZE}

; Automatically add files before PHP document.
; https://php.net/auto-prepend-file
Expand Down Expand Up @@ -847,7 +847,7 @@ file_uploads = On

; Maximum allowed size for uploaded files.
; https://php.net/upload-max-filesize
upload_max_filesize = 2M
upload_max_filesize = ${PHP_UPLOAD_MAX_FILESIZE}

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
Expand Down
4 changes: 2 additions & 2 deletions php/base/php83/etc/php83/php.ini
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ auto_globals_jit = On
; Its value may be 0 to disable the limit. It is ignored if POST data reading
; is disabled through enable_post_data_reading.
; https://php.net/post-max-size
post_max_size = 8M
post_max_size = ${PHP_POST_MAX_SIZE}

; Automatically add files before PHP document.
; https://php.net/auto-prepend-file
Expand Down Expand Up @@ -847,7 +847,7 @@ file_uploads = On

; Maximum allowed size for uploaded files.
; https://php.net/upload-max-filesize
upload_max_filesize = 2M
upload_max_filesize = ${PHP_UPLOAD_MAX_FILESIZE}

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
Expand Down