#!/bin/sh # It's not needed to be writable for www-data group when running with php-fpm. for dir in /etc/owncloud \ /etc/owncloud/config.php \ /var/lib/owncloud/data \ /usr/share/webapps/owncloud/apps do chmod g-w $dir chown owncloud $dir done chgrp root /etc/owncloud/config.php cat <