FileBrowser with https connection using duckdns

We don’t use the json file. Our configuration has been done using FileBrowser command line tool filebrowser config set - File Browser

Just tested on 2 demo system. One was hosting FileBrowser and the other was Nginx. Working without any issues

  1. FileBrowser system
# login as root
cd /mnt/dietpi_userdata/filebrowser
systemctl stop filebrowser.service
/opt/filebrowser/filebrowser config set -b /file
systemctl start filebrowser.service
  1. Nginx system
nano /etc/nginx/sites-dietpi/file.conf

add

location /file {
                proxy_pass http://192.168.x.x:8084;
        }

save config and restart Nginx

systemctl restart nginx.service
  1. done