Nextcloud is hosted on a VM at nextcloud.socs.uoguelph.ca. It consists of the following components:
Note: All php commands must be run from /srv/nextcloud folder as the nextcloud user
sudo -u nextcloud php occ maintenance:mode --on
systemctl stop nginx
chown -R nextcloud:nextcloud nextcloud
find nextcloud/ -type d -exec chmod 750 {} \;
find nextcloud/ -type f -exec chmod 640 {} \;
sudo -u nextcloud php occ upgrade
systemctl start nginx
sudo -u nextcloud php occ maintenance:mode --off