0
votes

I'm trying to get Traefik and Stapi CMS to work together, but I'm having problems when trying to access the admin panel. For example, I will deploy both services and access the CMS via cms.example.com which loads the public/index.html according to strapi as expected.

The issue is when I try to access cms.example.com/admin the request again returns the public/index.html page and not the admin page. I have also inspected the strapi output on both requests it seems to be requesting the same route.

Can someone direct me on how to identify if the error is with Traefik not sending the path or if it's Strapi that's bombing out?

Here is some details about the deployments:

  1. Traefik deployment:
docker run -d -v /var/run/docker.sock:/var/run/docker.sock -v $PWD/traefik.toml:/traefik.toml -p 80:80 -p 443:443 -p 8080:8080  --network web --name traefik traefik:2.0.2
  1. Strapi docker-compose:
version: '3.1'

    services:
  strapi:
    image: strapi/strapi
    environment:
      - DATABASE_CLIENT=postgres
      - DATABASE_HOST=strapi-db
      - DATABASE_PORT=5432
      - DATABASE_NAME=strapi
      - DATABASE_USERNAME=strapi
      - DATABASE_PASSWORD=strapi
    ports:
      - 9020:1337
    labels:
      - "traefik.enable=true"
      - "traefik.http.routers.circulate.rule=Host(`cms.circulate.co.za`)"
      - "traefik.http.routers.circulate.entrypoints=web"
      - "traefik.docker.network=web"
      - "traefik.http.middlewares.circulate.addprefix.prefix=/foo"
      - "traefik.port=80"
    networks:
      - internal
      - web
    volumes:
      - ./app:/srv/app
    depends_on:
      - strapi-db
    command: 'strapi start'

  strapi-db:
    image: postgres:12.1
    restart: always
    networks:
      - internal
      - web
    volumes:
      - strapi-vol:/var/lib/postgresql/data
    environment:
      POSTGRES_USER: strapi
      POSTGRES_PASSWORD: strapi
      POSTGRES_DB: strapi

volumes:
  strapi-vol:

networks:
  web:
    external: true
  internal:
    external: false

Traefik TOML file:

################################################################
# Global configuration
################################################################
[global]
  checkNewVersion = true
  sendAnonymousUsage = true

################################################################
# Entrypoints configuration
################################################################

# Entrypoints definition
#
# Optional
# Default:
[entryPoints]
  [entryPoints.web]
    address = ":80"

  [entryPoints.websecure]
    address = ":443"

################################################################
# Traefik logs configuration
################################################################

# Traefik logs
# Enabled by default and log to stdout
#
# Optional
#
[log]

  # Log level
  #
  # Optional
  # Default: "ERROR"
  #
   level = "INFO"

  # Sets the filepath for the traefik log. If not specified, stdout will be used.
  # Intermediate directories are created if necessary.
  #
  # Optional
  # Default: os.Stdout
  #
  filePath = "log/traefik.log"

  # Format is either "json" or "common".
  #
  # Optional
  # Default: "common"
  #
   format = "json"

################################################################
# Access logs configuration
################################################################

# Enable access logs
# By default it will write to stdout and produce logs in the textual
# Common Log Format (CLF), extended with additional fields.
#
# Optional
#
# [accessLog]

  # Sets the file path for the access log. If not specified, stdout will be used.
  # Intermediate directories are created if necessary.
  #
  # Optional
  # Default: os.Stdout
  #
  # filePath = "/path/to/log/log.txt"

  # Format is either "json" or "common".
  #
  # Optional
  # Default: "common"
  #
  # format = "json"

################################################################
# API and dashboard configuration
################################################################

# Enable API and dashboard
[api]

  # Name of the related entry point
  #
  # Optional
  # Default: "traefik"
  #
  # entryPoint = "traefik"

  # Enabled Dashboard
  #
  # Optional
  # Default: true
  #
   dashboard = true
   insecure = true

################################################################
# Ping configuration
################################################################

# Enable ping
[ping]

  # Name of the related entry point
  #
  # Optional
  # Default: "traefik"
  #
  # entryPoint = "traefik"

################################################################
# Docker configuration backend
################################################################

# Enable Docker configuration backend
[providers.docker]

  # Docker server endpoint. Can be a tcp or a unix socket endpoint.
  #
  # Required
  # Default: "unix:///var/run/docker.sock"
  #
  # endpoint = "tcp://10.10.10.10:2375"

  # Default host rule.
  #
  # Optional
  # Default: "Host(`{{ normalize .Name }}`)"
  #
  # defaultRule = "Host(`{{ normalize .Name }}.docker.localhost`)"

  # Expose containers by default in traefik
  #
  # Optional
  # Default: true
  #
  network = "web"
  watch = true
  exposedByDefault = false
1

1 Answers

0
votes

Solved this by first manually building the Strapi Admin UI and then configuring Traefik to route requests.