1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-04 15:54:48 +01:00

when modifying php.ini, use ; as the comment char not # because php emits horrid deprecation warnings otherwise

This commit is contained in:
Joshua Tauberer
2014-08-15 18:29:05 -04:00
parent d03bc0cefa
commit a10b828d5c
2 changed files with 15 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
#!/bin/bash
# Owncloud
##########################
@@ -73,7 +74,8 @@ mkdir -p $STORAGE_ROOT/owncloud
chown -R www-data.www-data $STORAGE_ROOT/owncloud /usr/local/lib/owncloud
# Set PHP FPM values to support large file uploads
tools/editconf.py /etc/php5/fpm/php.ini \
# (semicolon is the comment character in this file, hashes produce deprecation warnings)
tools/editconf.py /etc/php5/fpm/php.ini -c ';' \
upload_max_filesize=16G \
post_max_size=16G \
output_buffering=16384 \