Jump to content

Docker compose , Traefik-proxy & emby .


Ren888

Recommended Posts

Hello .
I come to you because I find no glorious end to a hallucinatory and desperate problem.
I made a clean and tidy new installation with docker dial and traefik-proxy. I made the installation of several applications, and especially Emby. But I can not open the emby webpage.

 

It remains closed on a blank page with bad gateway displayed only. I have the ssl activated and the page secure but nothing else. I have never had access to this page before, despite the many installations.

 

With docker CE I did not have this problem. Could you help me solve that? What can I give you as information to get your help?

Link to comment
Share on other sites

I will try (hope this will not destroy the link with others, my brain is exhausted about this problem lol)

 

EDIT : no, it does not work. The page is dead without the proxy

Edited by Ren888
Link to comment
Share on other sites

Yes, but I had two things different from another installation mode, I will see to change with that. Tell you what becomes of them. Thx very much :)

Link to comment
Share on other sites

#########################################################
#                        Seedbox                        #
#                       ---------                       #
#                                                       #
# - Emby        :       Streaming video/music/photos    #
#                                                       #
#                                                       #
#########################################################

version: '2'

services:

########
# Emby #
########
  emby:
    image: emby/embyserver
    container_name: stream-video_Emby
    restart: always
    hostname: video
    labels:
    - traefik.enable=true
    - traefik.frontend.rule=Host:emby.domain.com
    - traefik.backend.port=8096
    - traefik.docker.network=traefik-proxy
    ports:
      - 8096:8096 # To expose the HTTP port#
      - 8920:8920 # To expose the HTTPS port#
    volumes:
      - /home/user/media/download/films:/home/user/media/download/films:rw
      - ./docker/files/emby/conf:/config:rw
      - /etc/localtime:/etc/localtime:ro
    environment:
      - APP_UID=1000
      - APP_GID=100     
      - GIDLIST=100 #A comma-separated list of additional GIDs to run emby as (default 2)#
      - TZ=Europe/Paris
    networks:
      - traefik-proxy

volumes:
  files:
    driver: local

networks:
  traefik-proxy:
    external:
      name: traefik-proxy

I added the lines like that, but I was not convinced. Nothing changes always stuck on blank window "bad gateway" only (without error number)

Link to comment
Share on other sites

I found the problem. Let's encrypt blacklisted my domain names because I asked for too much certificate. I changed domain name and I was able to reinstall emby without damage and enjoy it with happiness. thank you

Link to comment
Share on other sites

  • 2 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...