diff --git a/docker-compose.yml b/docker-compose.yml index 9f3939c..227eb90 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,6 +11,7 @@ services: - publish - subscribe - transcription + - auth ports: - "80:80" - "443:443" @@ -106,7 +107,7 @@ services: tty: true restart: unless-stopped environment: - - LISTEN=127.0.0.1:10205 + - LISTEN=0.0.0.0:10205 - SECRET=secret ports: - "10205:10205" # Remove this for production diff --git a/traefik.toml b/traefik.toml index a2e4c11..6ec518f 100644 --- a/traefik.toml +++ b/traefik.toml @@ -5,7 +5,7 @@ dashboard = true [entryPoints.http] address = ":80" [entryPoints.http.auth.forward] - address = "http://auth:10205" + address = "http://auth:10205/auth" trustForwardHeader = true authResponseHeaders = [ "X-User-Claim" ] [entryPoints.login]