Nextcloud - Mettre à jour

Logo Nextcloud

Environnement

  • Conteneur LXC Proxmox
  • Ubuntu 20.04

Mise à jour

Se connecter en SSH au serveur Nextcloud, passer en root et allez dans le dossier /root :

sudo -s
cd /root/

Exécuter le script de modification des droits afin de permettre la mise à jour :

./update_rights.sh

Script update_rights.sh

#!/bin/bash
# update_rights.sh
# Sets permissions of the Nextcloud instance for updating

ocpath='/var/www/nextcloud'
htuser='www-data'
htgroup='www-data'

chown -R ${htuser}:${htgroup} ${ocpath}

Lancer la mise à jour :

sudo -u www-data php /var/www/nextcloud/updater/updater.phar

Terminer la mise à jour et exécuter le script de sécurisation des droits :

./update_rights.sh

Script strict_rights.sh

#!/bin/bash
# stricts_rights.sh
ocpath='/var/www/nextcloud'
htuser='www-data'
htgroup='www-data'
rootuser='root'

printf "Creating possible missing Directories\n"    
mkdir -p $ocpath/data
mkdir -p $ocpath/updater

printf "chmod Files and Directories\n"
find ${ocpath}/ -type f -print0 | xargs -0 chmod 0640
find ${ocpath}/ -type d -print0 | xargs -0 chmod 0750

printf "chown Directories\n"
chown -R ${rootuser}:${htgroup} ${ocpath}/
chown -R ${htuser}:${htgroup} ${ocpath}/apps/
chown -R ${htuser}:${htgroup} ${ocpath}/config/
chown -R ${htuser}:${htgroup} ${ocpath}/data/
chown -R ${htuser}:${htgroup} ${ocpath}/themes/
chown -R ${htuser}:${htgroup} ${ocpath}/updater/

chmod +x ${ocpath}/occ

printf "chmod/chown .htaccess\n"
if [ -f ${ocpath}/.htaccess ]
 then
  chmod 0644 ${ocpath}/.htaccess
  chown ${rootuser}:${htgroup} ${ocpath}/.htaccess
fi
if [ -f ${ocpath}/data/.htaccess ]
 then
  chmod 0644 ${ocpath}/data/.htaccess
  chown ${rootuser}:${htgroup} ${ocpath}/data/.htaccess
fi