Heimdall is a web based application dashboard
Example installation using Docker
docker run -d \ --name=heimdall \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/Sofia \ -p 8080:80 \ -p 8443:443 \ -v /home/dock/heimdall/config:/config \ --restart unless-stopped \ ghcr.io/linuxserver/heimdall
Nginx Proxy Config for host with SSL:
location / { proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header Connection ""; proxy_pass https://0.0.0.0:8443/; }