File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 61
61
[ -n "${APP_URL}" ] && sed -r "s,([#\s]*)?APP_URL=.*,APP_URL=${APP_URL},g" -i /config/www/.env
62
62
63
63
## Bump php upload max filesize and post max size to 100MB by default
64
- grep -qxF 'upload_max_filesize' /config/php/php-local.ini || echo 'upload_max_filesize = 100MB' >> /config/php/php-local.ini
65
- grep -qxF 'post_max_size' /config/php/php-local.ini || echo 'post_max_size = 100MB' >> /config/php/php-local.ini
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
66
72
67
73
# check for the mysql endpoint for 30 seconds
68
74
END=$((SECONDS+30))
You can’t perform that action at this time.
0 commit comments