Sonarr and Radarr only Show Radarr/Sonarr Ver on Their Pages

I have nearly finished setting up my media server, but I cannot seem to access Sonarr and Radarr. When I try to load their pages (using Let’s Encrypt!'s bulit in proxy confs for subfolders), I am greeted with a page that only reads Sonarr Ver or Radarr Ver.

There are no similar issues with any other services. I have not changed anything from the default proxy confs. The only change I have made from default docker-compose configs is adding a BASE_URL and removing the ports section.

docker-compose:
sonarr:
image: linuxserver/sonarr
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- BASE_URL=/sonarr
volumes:
- /opt/appdata/sonarr:/config
- /media/storage/tv:/tv
- /media/storage/downloads:/downloads
restart: unless-stopped
radarr:
image: linuxserver/radarr
container_name: radarr
environment:
- PUID=1000
- PGID=1000
- TZ=America/New_York
- BASE_URL=/radarr
volumes:
- /opt/appdata/radarr:/config
- /media/storage/movies:/movies
- /media/storage/downloads:/downloads
restart: unless-stopped

You need to set the base url in the gui, they don’t accept that environment variable

How can I access the GUI? I tried to remove those variables, but I ran into the same issue.

Map the ports, access the gui directly, enable base url.

Then you can do reverse proxy and remove port mapping

Thank you so much! That worked like a charm. I think I should be able to take care of the remaining setup on my own.

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.