Heimdall and Nextcloud

Hello together

I would like to run NextCloud with apache and Heimdall on my Raspberry with Dietpi. Unfortunately Heimdall does not work after I installed Apache.
I suspect that there are port overlaps…

What can I do to make both work together ? Change port maybe (I don’t understand how to do that) ?
Or is there an alternative already in the dietpi software center to create a dashboard that is easy to handle… ?

I have portainer installed on which i have a container running on which heimdall is installed. in the docker-compose.yml it says this:

version: "2.1"
services:
  heimdall:
    image: linuxserver/heimdall
    container_name: heimdall
    volumes:
      - /heimdall-data:/config
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
    ports:
      - 120:80
      - 443:443
    restart: unless-stopped

once i install nextcloud and apache the container (on portainer) on the heimdall is not starting error code 403 or 500 sometimes.

Thanks for your help

Welcome to our community.

I guess the issue is the container being started on port 443 as this is the HTTPS port and might be blocked by Apache if you activated SSL/HTTPS. You would need to start the Heimdall container on a different port than 443.

I have done it with these instructions.
Now my heimdall is available on port 8080 :slight_smile:

Installing Docker and Heimdall on Ubuntu · Discussion #778 · linuxserver/Heimdall · GitHub

Yeah basically it’s just to specify different ports on your Docker compose configuration file. :smile: