Change traefik defaults portsΒΆ

In rcstack the router component by default listens on 80, 443, SSH (9022), Loki (3100) ports. Those could be already taken in your current setup. To change those ports edit the .custom/docker-compose-router.override.yaml and edit the ports section In the example below, we changed port 80 to 8000 and 443 to 8443

services:

  traefik:
    # NOTE: the '!override' replaces the original values defined, avail on docker-compose 2.24.2+
    # don't use it if your compose doesn't allow this syntax
    ports: !override
      # The HTTP port, exposed as http entrypoint
      - "8000:80"
      # The HTTPS port, exposed as https entrypoint
      - "8443:443"

Other various configuration options can be found in .custom/docker-compose-router.override.yaml