Skip to main content
Version: Next

Nextcloud

Nextcloud is An open source file sync and share software for everyone, used for Document Collaboration . Nextcloud is an open source file sync and share software for everyone, provides a safe, secure, and compliant file synchronization and sharing solution on servers that you control.

gui

Prepare

When referring to this document to use **Nextcloud **, please read and ensure the following points:

  • Login to Websoft9 Console and find or install Nextcloud :

    • Go to My Apps listing applications
    • Go to App Store installing target application
  • This application is installed by Websoft9 console.

  • The purpose of this application complies with the AGPL-3.0 open source license agreement.

  • Configure the domain name or server security group opens external network ports for application access.

Getting Started

Login Verification

  1. After completing the installation of Nextcloud via the Websoft9 Console, retrieve the application's Overview and Access information from My Apps.

  2. Access the Nextcloud URL and log in to the backend to get started.

Document Preview and Edit

Integration of Nextcloud Office

Nextcloud has built-in Nextcloud Office (based on Collabora Online Development Edition, or CODE). Install the CODE plugin to enable it.

Integration with ONLYOFFICE Docs

  1. (Optional) In the Websoft9 console App Store, install ONLYOFFICE.

  2. In the Nextcloud console, click the top-right gear icon, select +Apps > Office & Text, and install ONLYOFFICE.

  3. In the Nextcloud console, click the top-right gear icon, select Administration Settings, and find ONLYOFFICE settings. Follow the Integration Guide for ONLYOFFICE.

  4. After the installation is complete, locate the SETUP page and configure ONLYOFFICE as shown (refer to the official documentation).

Install the Application Offline

  1. From the Nextcloud App Market, find the app package URL and download it to the server.

  2. Extract it to the Nextcloud container's /var/www/html/apps directory.

  3. Enter the container CLI and change the permissions of the apps directory:

    chown -R www-data:www-data /var/www/html/apps/appname
  4. Log in to the Nextcloud backend, enter the application center, and enable the extension.

WebDAV Service

WebDAV is used to establish a connection between a local computer and Nextcloud:

  1. In the Nextcloud console, go to File > File Settings to get the WebDAV URL.
  2. On a local Windows PC, configure the WebDAV client.

Connecting to External Storage

Nextcloud supports many popular enterprise storage services. The steps to use them are as follows:

  1. Log in to the Nextcloud backend, select Apps > Your Apps, and enable External storage support.

  2. In Administration Settings of the Nextcloud backend, set up external storage with S3 compatibility protocol settings:

    • Bucket: Corresponds to the storage bucket of some vendors.
    • Hostname: Corresponds to the Endpoint of some vendors.
    • Access Key: Generally required.

Rebuild Indexes

After moving or copying the Nextcloud data directory to another location, run occ files:scan --all to rebuild the index.

Secure Use of HTTPS

  1. In the Websoft9 console, select Gateway, edit the proxy for the Nextcloud application, clear Custom Nginx Configuration in Advanced, and save it.

  2. Select My Apps > Compose > Go to Edit Repository > .env and uncomment the line OVERWRITEPROTOCOL to rebuild the application.

Configuration Options

  • App Market (✅)

  • Configuration file (mounted): /var/www/html/config/config.php

  • Multilingual (✅): Configured through Personal Settings.

  • SMTP (✅): Configured via Administration Settings > Basic Settings > Email Servers

  • LDAP

  • Mainstream External Storage Service: Amazon S3, Dropbox, FTP, Google Drive, SMB, WebDAV, SFTP, etc.

  • Mobile (✅): Nextcloud Desktop Client, Nextcloud Android App, Nextcloud iOS App.

  • CLI: occ for installing and upgrading Nextcloud, managing users, managing passwords, and more.

  • Basic APIs

Administration

  • Modify URL: The configuration file parameter overwrite.cli.url defaults to wildcard, which can automatically apply to any URL change.

  • Online Backup: Install OwnBackup to achieve online backup.

Troubleshooting

Disable ONLYOFFICE Certificate Validation?

If Nextcloud is using HTTPS, ONLYOFFICE must also use HTTPS, or the connection will fail.

You can disable certificate verification by configuring the Nextcloud backend plugin or adding the following to the configuration file:

'onlyoffice' =>
array (
'verify_peer_off' => TRUE,
),

Can't Install Apps Due to Network Timeout?

Refer to the Install Apps Offline scenario.