Harp Nextcloud: Install

Here’s a concise review of installing Nextcloud via HARP (likely referring to a hosting platform or automated deployment script — if you meant a specific service like HARP Platform or HARP.io, let me know). I’ll focus on the general experience of using a pre-configured HARP-based Nextcloud deployment.

Adding Collabora Online (Office Integration)

Extend your harp.json:

Step 4 — Configure Apache virtual host

  1. Create site file /etc/apache2/sites-available/nextcloud.conf:
    <VirtualHost *:80>
      ServerName cloud.example.com
      DocumentRoot /var/www/nextcloud
      <Directory /var/www/nextcloud/>
        Require all granted
        AllowOverride All
        Options FollowSymLinks MultiViews
      </Directory>
      ErrorLog $APACHE_LOG_DIR/nextcloud-error.log
      CustomLog $APACHE_LOG_DIR/nextcloud-access.log combined
    </VirtualHost>
    
  2. Enable site and reload:
    sudo a2ensite nextcloud.conf
    sudo systemctl reload apache2