Nextcloud (Linux): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Links) |
|||
(18 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 15: | Zeile 15: | ||
sudo chown -R www-data:www-data nextcloud | sudo chown -R www-data:www-data nextcloud | ||
</pre> | </pre> | ||
=== Links === | === Links === | ||
[https://nextcloud.com/install/ https://nextcloud.com/install/] | [https://nextcloud.com/install/ https://nextcloud.com/install/] | ||
== MySQL-Datenbank anlegen == | == MySQL-Datenbank anlegen == | ||
Zeile 150: | Zeile 99: | ||
sudo service apache2 reload | sudo service apache2 reload | ||
</pre> | </pre> | ||
== Optionale Konfiguration == | |||
=== PHP Memory Cache aktivieren === | |||
Installation des Redis-Server siehe: [[Redis-Server (Ubuntu)|Redis-Server]] | |||
Damit der Apache-Benutzer <code>www-data</code> darauf zugreifen kann, muss er zur Gruppe <code>redis</code> hinzugefügt werden: | |||
<pre> | |||
sudo usermod -aG redis www-data | |||
</pre> | |||
Danach in der Datei <code>config.php</code> | |||
<pre> | |||
sudo vi /var/www/nextcloud/config/config.php | |||
</pre> | |||
folgende Zeilen hinzufügen: | |||
<pre> | |||
'memcache.locking' => '\OC\Memcache\Redis', | |||
'memcache.local' => '\OC\Memcache\Redis', | |||
'redis' => array( | |||
'host' => '/var/run/redis/redis.sock', | |||
'port' => 0, | |||
'dbindex' => 0, | |||
'password' => 'secret', | |||
'timeout' => 1.5, | |||
), | |||
</pre> | |||
=== PHP OPCache aktivieren === | |||
Dazu in der Datei <code>php.ini</code> | |||
<pre> | |||
sudo vi /etc/php/7.0/apache2/php.ini | |||
</pre> | |||
von folgenden Zeilen das Kommentarzeichen entfernen bzw. die Werte anpassen: | |||
<pre> | |||
opcache.enable=1 | |||
opcache.enable_cli=1 | |||
opcache.interned_strings_buffer=8 | |||
opcache.max_accelerated_files=10000 | |||
opcache.memory_consumption=128 | |||
opcache.save_comments=1 | |||
opcache.revalidate_freq=1 | |||
</pre> | |||
Danach muss Apache neu gestartet werden: | |||
<pre> | |||
sudo service apache2 restart | |||
</pre> | |||
==== Links ==== | |||
[https://docs.nextcloud.com/server/12/admin_manual/configuration_server/caching_configuration.html#id3 https://docs.nextcloud.com/server/12/admin_manual/configuration_server/caching_configuration.html] | |||
== Nextcloud absichern == | |||
[[Nextcloud absichern (Ubuntu 18.04)#Fail2Ban| Nextcloud absichern#Fail2Ban]] | |||
== Migration / Update == | == Migration / Update == | ||
Zeile 158: | Zeile 174: | ||
[https://apps.nextcloud.com/ https://apps.nextcloud.com/] | [https://apps.nextcloud.com/ https://apps.nextcloud.com/] | ||
== Probleme == | |||
=== Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht. === | |||
In der Konfigurations-Datei muss folgender Eintrag hinzugefügt werden: | |||
<pre> | |||
<Directory /var/www/nextcloud/> | |||
Options +FollowSymlinks | |||
AllowOverride All | |||
</Directory> | |||
</pre> | |||
== Links == | == Links == | ||
Zeile 164: | Zeile 193: | ||
Zurück zu [[Ubuntu]] | Zurück zu [[Nextcloud (unterschiedliche Versionen)#Ubuntu Versionen|Nextcloud]] |
Aktuelle Version vom 9. Juni 2020, 07:18 Uhr
Voraussetzungen
sudo apt-get install libapache2-mod-php7.0 php7.0-gd php7.0-json php7.0-mysql php7.0-curl sudo apt-get install php7.0-mbstring php7.0-intl php7.0-mcrypt php-imagick php7.0-xml php7.0-zip
Installation
wget https://download.nextcloud.com/server/releases/nextcloud-12.0.4.zip unzip nextcloud-12.0.4.zip sudo mv nextcloud /var/www/ cd /var/www/ sudo chown -R www-data:www-data nextcloud
Links
https://nextcloud.com/install/
MySQL-Datenbank anlegen
mysql -u root -p mysql> create database if not exists nextcloud; mysql> create user 'nextcloud'@'%' identified by '<password>'; mysql> grant all on nextcloud.* to 'nextcloud'@'%'; mysql> flush privileges; mysql> quit;
Konfiguration
Apache
Folgende Module werden benötigt/empfohlen:
sudo a2enmod rewrite sudo a2enmod headers sudo a2enmod env sudo a2enmod dir sudo a2enmod mime
Danach Apache neu starten:
sudo service apache2 restart
HTTPS
Erstellung eines SSL-Zertifikates siehe SSL_Zertifikat
cd /etc/apache2/sites-available/ sudo nano nextcloud.conf
<VirtualHost *:80> ServerName nextcloud.kirner.or.at ServerAlias nextcloud.kirner.or.at Redirect / https://nextcloud.kirner.or.at </VirtualHost>
sudo nano nextcloud-ssl.conf
<VirtualHost *:443> ServerName nextcloud.kirner.or.at ServerAlias nextcloud.kirner.or.at SSLEngine on SSLCertificateFile /etc/ssl/certs/nextcloud.crt SSLCertificateKeyFile /etc/ssl/private/apache.key # Pfad zu den Webinhalten DocumentRoot /var/www/nextcloud KeepAlive On KeepAliveTimeout 5 <IfModule mod_headers.c> Header always set Strict-Transport-Security "max-age=15768000; includeSubDomains; preload" </IfModule> ErrorLog ${APACHE_LOG_DIR}/nextcloud.kirner.or.at-error.log CustomLog ${APACHE_LOG_DIR}/nextcloud.kirner.or.at-access.log combined </VirtualHost>
sudo a2ensite nextcloud sudo a2ensite nextcloud-ssl sudo service apache2 reload
Optionale Konfiguration
PHP Memory Cache aktivieren
Installation des Redis-Server siehe: Redis-Server
Damit der Apache-Benutzer www-data
darauf zugreifen kann, muss er zur Gruppe redis
hinzugefügt werden:
sudo usermod -aG redis www-data
Danach in der Datei config.php
sudo vi /var/www/nextcloud/config/config.php
folgende Zeilen hinzufügen:
'memcache.locking' => '\OC\Memcache\Redis', 'memcache.local' => '\OC\Memcache\Redis', 'redis' => array( 'host' => '/var/run/redis/redis.sock', 'port' => 0, 'dbindex' => 0, 'password' => 'secret', 'timeout' => 1.5, ),
PHP OPCache aktivieren
Dazu in der Datei php.ini
sudo vi /etc/php/7.0/apache2/php.ini
von folgenden Zeilen das Kommentarzeichen entfernen bzw. die Werte anpassen:
opcache.enable=1 opcache.enable_cli=1 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=10000 opcache.memory_consumption=128 opcache.save_comments=1 opcache.revalidate_freq=1
Danach muss Apache neu gestartet werden:
sudo service apache2 restart
Links
https://docs.nextcloud.com/server/12/admin_manual/configuration_server/caching_configuration.html
Nextcloud absichern
Migration / Update
Migration Owncloud to Nextcloud
Apps
Probleme
Dein Datenverzeichnis und deine Dateien sind wahrscheinlich vom Internet aus erreichbar. Die .htaccess-Datei funktioniert nicht.
In der Konfigurations-Datei muss folgender Eintrag hinzugefügt werden:
<Directory /var/www/nextcloud/> Options +FollowSymlinks AllowOverride All </Directory>
Links
Zurück zu Nextcloud