Diferència entre revisions de la pàgina «Nextcloud a Ubuntu 16.04»

De Wiket
Salta a la navegació Salta a la cerca
Línia 14: Línia 14:
 
Descomprimim nextcloud a la carpeta /var/www
 
Descomprimim nextcloud a la carpeta /var/www
 
  #tar -C /var/www -xvjf nextcloud-11.0.3.tar.bz2
 
  #tar -C /var/www -xvjf nextcloud-11.0.3.tar.bz2
 +
Creem un script per indicar els permisos i propietaris dels fitxers de NextCloud
 +
 +
#nano nextcloud.sh
 +
#!/bin/bash
 +
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/assets
 +
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
 +
chmod 755 ${ocpath}
 +
 +
printf "chown Directories\n"
 +
chown -R ${rootuser}:${htgroup} ${ocpath}/
 +
chown -R ${htuser}:${htgroup} ${ocpath}/apps/
 +
chown -R ${htuser}:${htgroup} ${ocpath}/assets/
 +
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

Revisió del 22:13, 22 maig 2017

Requisits

  1. Máquina Ubuntu Server
  2. LAMP
    1. Podeu trobar com instal·lar-ho a LAMP a Ubuntu 16.04

Instalació

Anem a la pàgina oficial on surten els releases i agafem la versió que nosaltres volguem, en aquest cas utilitzarem la versió 11.03

#cd /tmp/
#curl -LO https://download.nextcloud.com/server/releases/nextcloud-11.0.3.tar.bz2

Descomprimim nextcloud a la carpeta /var/www

#tar -C /var/www -xvjf nextcloud-11.0.3.tar.bz2

Creem un script per indicar els permisos i propietaris dels fitxers de NextCloud

#nano nextcloud.sh
#!/bin/bash
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/assets
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
chmod 755 ${ocpath}

printf "chown Directories\n"
chown -R ${rootuser}:${htgroup} ${ocpath}/
chown -R ${htuser}:${htgroup} ${ocpath}/apps/
chown -R ${htuser}:${htgroup} ${ocpath}/assets/
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