45Drives Knowledge Base
KB450427 - Nextcloud with Nginx Proxy Manager on Ubuntu 20.04
https://knowledgebase.45drives.com/kb/kb450427-nextcloud-with-nginx-proxy-manager-on-ubuntu-20-04/

KB450427 - Nextcloud with Nginx Proxy Manager on Ubuntu 20.04

Posted on June 25, 2021 by smacphee


Scope/Description

Prerequisites

Steps

apt-get update
sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg \
    lsb-release
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
  "deb  https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
mkdir /opt/nextcloud
curl -LO https://scripts.45drives.com/nextcloud/nextcloud-compose.yml
curl -LO https://scripts.45drives.com/nextcloud/Dockerfile
mv nextcloud-compose.yml docker-compose.yml
docker-compose up -d
docker-compose ps

Verification

Troubleshooting

iptables -t filter -N DOCKER
systemctl restart docker.services
{
"database": {
"engine": "mysql",
"host": "npm-db",
"name": "npm",
"user": "npm",
"password": "thisisjustatest",
"port": 3306
}
}
vim /var/lib/docker/volumes/nextcloud_nextcloud-data/_data/config/config.php
'trusted_domains' =>
  array (
   0 => 'localhost',
   1 => 'server1.example.com',
   2 => '192.168.1.50',
),
KB450427 - Nextcloud with Nginx Proxy Manager on Ubuntu 20.04 - 45Drives Knowledge Base
Did you know  45Drives offers free  public and private  webinars ? Click here to learn more  & register! Build & Price

KB450427 – Nextcloud with Nginx Proxy Manager on Ubuntu 20.04

You are here:

Scope/Description

  • This guide will cover the process to setup Nextcloud as an internet facing application with an SSL certificate tied to a domain.

Prerequisites

  • Ubuntu 20.04 installed and running with all 45Drives scripts
  • A registered or otherwise hosted domain
  • Ports 80, and 443 port forwarded on your router
  • A DNS record from your domain to your public IP address

Steps

  • The first step in this process is getting docker engine and docker compose installed to do so we will need to first issue the below commands:
apt-get update
sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg \
    lsb-release
  • We then need Dockers GPG key which can be downloaded with the following command:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
  • We will now setup the Stable repository for docker
echo \
  "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
  • We can now install docker engine
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io
  • Now that docker engine is installed we can install docker compose, this can be done with the below commands:
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
  • We can confirm a successful docker compose installation by checking for our version with the following command:
docker-compose --version
  • We will now create a new directory called /opt/nextcloud, inside this directory we will also make a .yml file called docker-compose.yml
mkdir /opt/nextcloud
  • Pull the following two scripts into the created directory
curl -LO https://scripts.45drives.com/nextcloud/nextcloud-compose.yml
curl -LO https://scripts.45drives.com/nextcloud/Dockerfile
  • We will rename the nextcloud-compose.yml to docker-compose.yml
mv nextcloud-compose.yml docker-compose.yml
  • We can now run our docker file which will install Nextcloud, Ngnix, and the necessary databases
docker-compose up -d
  • You can confirm the docker containers are working correctly with the following command:
docker-compose ps
  • Now navigate to [IP ADDRESS]:81 in a web browser, the default login is admin@example.com and changeme. You will need to change this username and password before proceeding.
  • Once you’ve changed the username and password for your Ngnix Proxy Manager you will be able to access the dashboard, here you will want to navigate to Hosts > Proxy Hosts

  • In proxy hosts click the Add Proxy button, this will take you to the below window where you will enter your Domain Name, and fill out scheme, forward hostname and forward port.

  • At this point if you are using a self signed certificate continue on this guide.
  • Move to the SSL tab of this window and enter the below information, make sure to add a valid email address incase you need to recover this certificate.

  • click save, this will then create the proxy host pointing at the Nextcloud container with a valid certificate.
  • You can now force the use of https by clicking edit on the proxy host, navigating to the SSL tab and ticking Force SSL, HTTP/2 Support, and HSTS Enabled on

Verification

  • Verification of this process can be done by navigating to your domain/subdomain and accessing Nextcloud.

Troubleshooting

  • If you are having issues in accessing the Nextcloud externally to your network via the WAN IP or Domain Name given, test by setting up the WAN IP as a source in Nginx Proxy Manager.

  • If the SSL Certificate fails ensure that your firewall is not blocking port 80 (required to contact Lets Encrypt)
  • If you are unable to access your nextcloud ensure that your ports are forwarded correctly, and that you’ve created a valid A record, keep in mind some DNS providers can take up to 48 hours to update
  • If you are receiving network errors after removing an interface or IP from your host machine running the below commands will generally resolve the problem:
iptables -t filter -N DOCKER
systemctl restart docker.services
  • Once docker is restarted pulling your container down and back up will resolve the networking error.
  • If you are having a bad gateway error on your nginx after setup it may be caused by the docker container not creating the necessary config.json file. If this is the case simply create a config.json file in the /opt/nextcloud folder and enter the below text
{
"database": {
"engine": "mysql",
"host": "npm-db",
"name": "npm",
"user": "npm",
"password": "thisisjustatest",
"port": 3306
}
}
  • If you are getting an “untrusted domain” from the nextcloud log in edit the following file and add your domain under the array
vim /var/lib/docker/volumes/nextcloud_nextcloud-data/_data/config/config.php
'trusted_domains' =>
  array (
   0 => 'localhost',
   1 => 'server1.example.com',
   2 => '192.168.1.50',
),
Was this article helpful?
Dislike 6
Views: 9773
© 2024 - 45Drives Knowledge Base
Unboxing Racking Storage Drives Cable Setup Power UPS Sizing Remote Access