Dynamic Configuration not working for 2nd domain

Hey there , I've got the following dynamic.toml

    [entryPoints]
        [entryPoints.websecure]
         address = ":443"
        [entryPoints.web]
         address = ":80"
    
    [providers]
    [providers.file]
    [http]
        [http.routers]
            [http.routers.cbhttp]
              rule = "Host(`cb.xx.com`)"
              service = "cbhttp"
              entryPoints = ["web"]
            [http.routers.cbphttp]
              rule = "Host(`cbp.xx.com`)"
              service = "cbphttp"
              entryPoints = ["web"]
    		    [http.routers.drivehttp]
              rule = "Host(`drive.xx.com`)"
              service = "drivehttp"
              entryPoints = ["web"]
            [http.routers.psdrivehttp]
              rule = "Host(`psdrive.xx.com`)"
              service = "psdrivehttp"
              entryPoints = ["web"]
    
        [http.services]
              [http.services.cbhttp.loadbalancer]
                [[http.services.cbhttp.loadbalancer.servers]]
                  url = "http://192.168.21.130:7000"
              [http.services.cbphttp.loadbalancer]
                [[http.services.cbphttp.loadbalancer.servers]]
                  url = "http://192.168.21.130:7002"
    		  [http.services.drivehttp.loadbalancer]
                [[http.services.drivehttp.loadbalancer.servers]]
                  url = "http://192.168.21.130:10002"
          [http.services.psdrivehttp.loadbalancer]
                [[http.services.psdrivehttp.loadbalancer.servers]]
                  url = "http://192.168.21.200:10006"

Which works like a charm, problem is when I add another domain lets say I change psdrive.xx.com to psdrive.yy.com It does not seem to work and always serves a 404 page.
Am I missing something? Does the dynamic.toml file not support multiple domains?

Keep in mind that I am using routes and services with the yy.com domain via docker labels and it works fine.

Any suggestions would be greatly appreciated!

You can use multiple routers without a problem. Are you replacing an existing one, adding a secondary host or adding a new router? Just make sure they have a unique name.

And, of course, make sure your new domain points to the correct external IP of your Traefik host.

Thanks for the reply!
So I got it to work but I noticed something strange.

yy.com only works with websecure entry point while xx.com works with both websecure and web entry points. Any idea what might be causing this?

You have to tell your router which entrypoints to listen on. If you only use web and not websecure then you can not access your router/service via https.