Replace user
with the identifier of your user and password
with the password of your user in the command above.
Installing and configuring Nextcloud
- Nextcloud
- Ubuntu-Bionic-Beaver
Nextcloud is an open-source, self-hosted file share, and communication platform.
It provides a large portfolio of different applications to access your cloud storage from your PC, Mac, or mobile device.
Before you start
To complete the actions presented below, you must have:
- A Scaleway account logged into the console
- Owner status or IAM permissions allowing you to perform actions in the intended Organization
- An SSH key
- An Instance running Ubuntu Jammy Jellyfish (22.04 LTS)
sudo
privileges or access to the root user
Installing Nextcloud
-
Log in to your server:
ssh root@SERVER_IP_ADDRESS -
Update the APT package manager and upgrade the software already installed on your Instance to the latest version.
apt update && apt upgrade -y -
Install Nextcloud via Snap:
snap install nextcloud -
Finish the installation by running the following command. Note that a username and password must be provided when you run the script.
nextcloud.manual-install user passwordImportantYou will see the following message:
Nextcloud is not installed - only a limited number of commands are available
Some minutes later the following message appears:
Nextcloud was successfully installed
. Your Nextcloud installation has been successful.
Configuring trusted domains
By the default, the access to your Nextcloud Instance is limited to localhost
. To access it via your domain name, you have to add it to the list of trusted domains.
- Run the following command to allow the connection via the domain
your.domain.com
to your Nextcloud.nextcloud.occ config:system:set trusted_domains 1 --value=your.domain.com - The following message appears when the domain is successfully added:
System config value trusted_domains => 1 set to string your.domain.com
Securing the web interface with a Let’s Encrypt TLS/SSL certificate
By default, the Nextcloud installation via Snap provides a plain HTTP connection which is not encrypted. This may be a potential security risk when transferring your data over the internet.
Let’s Encrypt provides free TLS/SSL certificates to encrypt the connection to your Nextcloud instance.
- The snap package relies on the
resolvconf
package to resolve DNS requests, which is not installed on Ubuntu by default. Install it using the APT package manager:apt install resolvconf - Enable SSL and request a Let’s Encrypt SSL certificate:
nextcloud.enable-https lets-encrypt
- The following message will appear, confirm it by pressing
y
on your keyboard:In order for Let's Encrypt to verify that you actually own thedomain(s) for which you're requesting a certificate, there are anumber of requirements of which you need to be aware:1. In order to register with the Let's Encrypt ACME server, you mustagree to the currently-in-effect Subscriber Agreement locatedhere:https://letsencrypt.org/repository/By continuing to use this tool you agree to these terms. Pleasecancel now if otherwise.2. You must have the domain name(s) for which you want certificatespointing at the external IP address of this machine.3. Both ports 80 and 443 on the external IP address of this machinemust point to this machine (e.g. port forwarding might need to besetup on your router).Have you met these requirements? (y/n) - Enter your email address when asked to do so and confirm by pressing Enter:
Please enter an email address (for urgent notices or key recovery): you@your.domain.com
- Enter the domain name that you have configured in a previous step for your Instance (
your.domain.com
in our case), then confirm by pressing Enter:Please enter your domain name(s) (space-separated): your.domain.com - Your certificate is being requested and Apache will be restarted. The following messages will appear, once the certificate has been obtained:
Attempting to obtain certificates... doneRestarting apache... done
Accessing Nextcloud
You will now be able to access your Nextcloud Instance for the first time.
- Open your browser and type the address of your Instance (For example:
https://your.domain.com
). You will see a login screen where you have to enter the user and password that you have created previously. - Once connected you will see your personal cloud storage space. You can upload, share, or download files from the interface:
- Optionally, you can download one of the several Nextcloud clients to manage your cloud storage space directly from your computer.