We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047e84e commit 608466eCopy full SHA for 608466e
root/etc/cont-init.d/50-config
@@ -64,6 +64,12 @@ fi
64
grep -qx '^upload_max_filesize.*$' /config/php/php-local.ini || echo 'upload_max_filesize = 100M' >> /config/php/php-local.ini
65
grep -qx '^post_max_size.*$' /config/php/php-local.ini || echo 'post_max_size = 100M' >> /config/php/php-local.ini
66
67
+
68
+## TODO: Remove this following bit by 12/19/2020
69
+# Remove erronously added configs post-init
70
+sed -i "s/^upload_max_filesize = 100MB$//g" /config/php/php-local.ini
71
+sed -i "s/^post_max_size = 100MB$//g" /config/php/php-local.ini
72
73
# check for the mysql endpoint for 30 seconds
74
END=$((SECONDS+30))
75
while [ ${SECONDS} -lt ${END} ] && [ -n "${DB_HOST+x}" ]; do
0 commit comments