review findings
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
Steven Sting 2024-12-01 13:06:14 +01:00
parent 73efb584db
commit faf7335719
3 changed files with 10 additions and 6 deletions

View File

@ -41,6 +41,10 @@ SECRET_DB_PASSWORD_VERSION=v1
# Multisite (see README) # Multisite (see README)
#MULTISITE=enable # either 'enable', 'subdomain' or 'subfolder' #MULTISITE=enable # either 'enable', 'subdomain' or 'subfolder'
# File upload settings
#UPLOAD_MAX_SIZE=256M
#UPLOAD_MAX_TIME=30
# Local SMTP relay # Local SMTP relay
#COMPOSE_FILE="$COMPOSE_FILE:compose.mailrelay.yml" #COMPOSE_FILE="$COMPOSE_FILE:compose.mailrelay.yml"
#SMTP_HOST="postfix_relay_app" #SMTP_HOST="postfix_relay_app"

View File

@ -1,6 +0,0 @@
file_uploads = On
upload_max_filesize = 256M
post_max_size = 256M
memory_limit = 256M
max_execution_time = 30
max_input_time = 30

6
uploads.ini.tpl Normal file
View File

@ -0,0 +1,6 @@
file_uploads = On
upload_max_filesize = {{ env "UPLOAD_MAX_SIZE" }}
post_max_size = {{ env "UPLOAD_MAX_SIZE" }}
memory_limit = {{ env "UPLOAD_MAX_SIZE" }}
max_execution_time = {{ env "UPLOAD_MAX_TIME" }}
max_input_time = {{ env "UPLOAD_MAX_TIME" }}