Last active
December 23, 2015 18:51
-
-
Save Waltibaba/213d3bcb3073bd750213 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mysql buffer increase: | |
| in /etc/mysql/my.cnf | |
| -- innodb_buffer_pool_size=536870912 [512MB] | |
| decrease root size by remapping /var/www/owncloud/data | |
| this is the cache directory for uploads, that gets broken in every other patch, meaning loads of junk files there | |
| map /var/www/owncloud/data -> /mnt/[nfs share]/dataroot to save space (soft symlink works) | |
| OR | |
| /var/www/owncloud/config/config.php | |
| ... | |
| 'datadirectory' => '/mnt/[nfs share]/owncloud/data', | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment