Install Nextcloud

Download Nextcloud

$ cd ~/Downloads
$ wget https://download.nextcloud.com/server/releases/nextcloud-21.0.0.tar.bz2

Extract Nextcloud

$ sudo tar xvjf nextcloud-21.0.0.tar.bz2 -C /var/www

Configure Apache2

$ sudo a2enmod rewrite
$ sudo a2enmod headers
$ sudo a2enmod dir
$ sudo a2enmod env
$ sudo a2enmod mime

Setup nextcloud.conf

nextcloud.conf file would be like below.

Alias /nextcloud "/var/www/nextcloud/"

<Directory /var/www/nextcloud/>
  Require all granted
  AllowOverride All
  Options FollowSymLinks MultiViews

  <IfModule mod_dav.c>
    Dav off
  </IfModule>
</Directory>
$ sudo cp nextloud.conf /etc/apache2/sites-available
$ sudo a2ensite nextcloud.conf
$ sudo systemctl reload apache2

Last Updated on July 15, 2021 by lama-admin


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *