Owncloud installieren (Ubuntu 18.04): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 3: | Zeile 3: | ||
== Optionale Konfigurationen == | == Optionale Konfigurationen == | ||
=== Cronjobs === | |||
<pre> | |||
sudo crontab -e | |||
</pre> | |||
<pre> | |||
*/5 * * * * sudo -u www-data php -f /mnt/synology/web1/www/nextcloud/cron.php | |||
</pre> | |||
==== Links ==== | |||
=== Redis Server === | === Redis Server === | ||
Version vom 27. Juli 2020, 18:49 Uhr
Noch in Bearbeitung
Optionale Konfigurationen
Cronjobs
sudo crontab -e
*/5 * * * * sudo -u www-data php -f /mnt/synology/web1/www/nextcloud/cron.php
Links
Redis Server
Installation
siehe Redis-Server
Konfiguration
sudo vi /mnt/synology/web1/www/owncloud/config/config.php
'memcache.locking' => '\OC\Memcache\Redis',
'memcache.local' => '\OC\Memcache\Redis',
'redis' => [
'host' => '/var/run/redis/redis-server.sock',
'port' => 0,
'timeout' => 0,
'dbindex' => 0, // use different database for different applications
],
Links
Zurück zu Owncloud installieren