Let's use WebDav on Nextcloud with external access (Installation on OMV6)

Опубликовано: 15 Октябрь 2024
на канале: Sauber-Lab UK
9,013
74

In this video we will show you how you can use Nextcloud's WebDav. This way you have access to all your data even when you are away from home. In addition to having all Nextcloud's guarantee in terms of data protection, data recovery, many more applications that Nextcloud can offer you.
In this video we will show the installation of Nextcloud with your database. To facilitate external access we will use DuckDNS and NIGNX proxy manager.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
To install Nextcloud, we will use the image:


https://hub.docker.com/r/linuxserver/...


The database we will use will be the following:


https://hub.docker.com/r/linuxserver/...


We are going to install DockDNS so that every time your IP changes, you can still have your FTP connection, so check the link:


https://hub.docker.com/r/linuxserver/...


Finally, the command used for the NGINX proxy manager was the following:


version: '3'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
ports:
'90:80'
'81:81'
'450:443'
environment:
DB_MYSQL_HOST: "db"
DB_MYSQL_PORT: 3306
DB_MYSQL_USER: "sauberlab"
DB_MYSQL_PASSWORD: "test123"
DB_MYSQL_NAME: "npm"
volumes:
./date:/date
./letsencrypt:/etc/letsencrypt
db:
image: 'yobasystems/alpine-mariadb'
environment:
MYSQL_ROOT_PASSWORD: 'test321'
MYSQL_DATABASE: 'npm'
MYSQL_USER: 'sauberlab'
MYSQL_PASSWORD: 'test123'
volumes:
./mysql:/var/lib/mysql





- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


Leave your comment and share with your network. It's always good to know what needs improvement.


Don't forget to subscribe to the channel to receive tips and help.


To receive all notifications, tap the bell icon. It will change to a ringing bell to indicate that you have chosen to receive all notifications.