diff --git a/dockmon/compose.yaml b/dockmon/compose.yaml index ba2b458..b3dc1c3 100644 --- a/dockmon/compose.yaml +++ b/dockmon/compose.yaml @@ -24,7 +24,7 @@ services: # Prod Router - "traefik.http.routers.dockmon.rule=Host(`dockmon.forust.xyz`)" - "traefik.http.routers.dockmon.entrypoints=websecure" - - "traefik.http.routers.dockmon.middlewares=security-headers@file,dockmon-auth@file" + - "traefik.http.routers.dockmon.middlewares=security-chain@file" - "traefik.http.routers.dockmon.service=dockmon" - "traefik.http.routers.dockmon.tls=true" - "traefik.http.services.dockmon.loadbalancer.server.port=443" @@ -41,7 +41,7 @@ services: # Dev Router - "traefik.http.routers.dockmon-dev.rule=Host(`dockmon.gigaforust.internal`)" - "traefik.http.routers.dockmon-dev.entrypoints=websecure" - - "traefik.http.routers.dockmon-dev.middlewares=security-headers@file" + - "traefik.http.routers.dockmon-dev.middlewares=security-chain@file" - "traefik.http.routers.dockmon-dev.service=dockmon" - "traefik.http.routers.dockmon-dev.tls=true" diff --git a/glance/compose.yaml b/glance/compose.yaml index 6a06f66..6c940ab 100644 --- a/glance/compose.yaml +++ b/glance/compose.yaml @@ -16,7 +16,7 @@ services: # Prod Router - "traefik.http.routers.glance.rule=Host(`glance.forust.xyz`)" - "traefik.http.routers.glance.entrypoints=websecure" - - "traefik.http.routers.glance.middlewares=security-headers@file" + - "traefik.http.routers.glance.middlewares=security-chain@file" - "traefik.http.routers.glance.tls=true" # Local Router @@ -28,7 +28,7 @@ services: # Dev Router - "traefik.http.routers.glance-dev.rule=Host(`glance.gigaforust.internal`)" - "traefik.http.routers.glance-dev.entrypoints=websecure" - - "traefik.http.routers.glance-dev.middlewares=security-headers@file" + - "traefik.http.routers.glance-dev.middlewares=security-chain@file" - "traefik.http.routers.glance-dev.tls=true" networks: - traefik-proxy diff --git a/traefik/compose.yaml b/traefik/compose.yaml index 68f57dc..3b6e66e 100644 --- a/traefik/compose.yaml +++ b/traefik/compose.yaml @@ -44,24 +44,24 @@ services: - "traefik.enable=true" - "traefik.docker.network=traefik-proxy" - # Prod Router (Dashboard) - DISABLED per user request - # - "traefik.http.routers.traefik-dashboard.rule=Host(`traefik.forust.xyz`)" - # - "traefik.http.routers.traefik-dashboard.entrypoints=websecure" - # - "traefik.http.routers.traefik-dashboard.middlewares=auth,security-headers" - # - "traefik.http.routers.traefik-dashboard.service=api@internal" - # - "traefik.http.routers.traefik-dashboard.tls=true" + # Prod Router (Dash) + - "traefik.http.routers.traefik-dashboard.rule=Host(`traefik.forust.xyz`)" + - "traefik.http.routers.traefik-dashboard.entrypoints=websecure" + - "traefik.http.routers.traefik-dashboard.middlewares=security-chain@file" + - "traefik.http.routers.traefik-dashboard.service=api@internal" + - "traefik.http.routers.traefik-dashboard.tls=true" # Local Router - "traefik.http.routers.traefik-dashboard-local.rule=Host(`traefik.workstation.internal`) || Host(`traefik.internal`)" - "traefik.http.routers.traefik-dashboard-local.entrypoints=websecure" - - "traefik.http.routers.traefik-dashboard-local.middlewares=auth@file,security-headers@file" + - "traefik.http.routers.traefik-dashboard-local.middlewares=security-headers@file" - "traefik.http.routers.traefik-dashboard-local.service=api@internal" - "traefik.http.routers.traefik-dashboard-local.tls=true" # Dev Router - "traefik.http.routers.traefik-dashboard-dev.rule=Host(`traefik.gigaforust.internal`)" - "traefik.http.routers.traefik-dashboard-dev.entrypoints=websecure" - - "traefik.http.routers.traefik-dashboard-dev.middlewares=security-headers@file" + - "traefik.http.routers.traefik-dashboard-dev.middlewares=security-chain@file" - "traefik.http.routers.traefik-dashboard-dev.service=api@internal" - "traefik.http.routers.traefik-dashboard-dev.tls=true"