1
0
Fork 0

fix defaults

This commit is contained in:
Christian Winther 2024-01-17 15:52:09 +00:00
parent 3feb93b034
commit adbd66eb38
2 changed files with 4 additions and 4 deletions

View File

@ -59,7 +59,7 @@ find "${ENTRYPOINT_D_ROOT}" -follow -type f -print | sort -V | while read -r fil
fi
log-info ""
log-info "Sourcing [${file}]"
log-info "${notice_message_color}Sourcing [${file}]${color_clear}"
log-info ""
# shellcheck disable=SC1090
@ -77,7 +77,7 @@ find "${ENTRYPOINT_D_ROOT}" -follow -type f -print | sort -V | while read -r fil
fi
log-info ""
log-info "Executing [${file}]"
log-info "${notice_message_color}Executing [${file}]${color_clear}"
log-info ""
"${file}"

View File

@ -831,10 +831,10 @@ file_uploads = On
; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = {{ getenv "POST_MAX_SIZE" }}
upload_max_filesize = {{ getenv "POST_MAX_SIZE" "61M" }}
; Maximum number of files that can be uploaded via a single request
max_file_uploads = {{ getenv "MAX_ALBUM_LENGTH" }}
max_file_uploads = {{ getenv "MAX_ALBUM_LENGTH" "4" }}
;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;