User Tools

Site Tools


nextcloud

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
nextcloud [2019/10/03 17:13] – created adminnextcloud [2019/10/03 18:16] (current) admin
Line 17: Line 17:
 post_max_size = 500M post_max_size = 500M
 max_execution_time = 300 max_execution_time = 300
 +
 +Restart nginx
 +
 +systemctl restart nginx.service
 +
 +Download Nextcloud:
 +
 +wget https://download.nextcloud.com/server/releases/nextcloud-17.0.0.zip
 +
 +Unzip:
 +
 +apt install unzip
 +
 +unzip nextcloud-17.0.0.zip
 +
 +mv nextcloud /var/www/html/
 +
 +cd /var/www/html/
 +
 +chown -R www-data:www-data nextcloud
 +
 +sudo -u www-data php occ  maintenance:install --database "mysql" --database-name "nextcloud"  --database-user "root" --database-pass "password" --admin-user "admin" --admin-pass "password"
 +
 +apt install letsencrypt
 +
 +systemctl stop nginx.service
 +
 +certbot certonly standalone -d hostname
 +
 +systemctl start nginx.service
 +
 +In /etc/php/7.3/fpm/pool.d/www.conf folgendes auskommentieren:
 +
 +env[HOSTNAME] = $HOSTNAME
 +env[PATH] = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
 +env[TMP] = /tmp
 +env[TMPDIR] = /tmp
 +env[TEMP] = /tmp
 +
 +
 +
 +
  
  
  
nextcloud.1570122810.txt.gz · Last modified: 2019/10/03 17:13 by admin

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki