Consul Services Accessible Through Traefik

I am having trouble accessing consulCatalog services like I used to in v 1.x
On prem: RHEL7

Old version: Traefik: 1.6.5-12.el7.x86_64
https://traefichostname/aircraft/ Returns: output of "aircraft" on designated Consul Host

Config File: config.toml

[consulCatalog]
endpoint = "localhost:8500"
exposedByDefault = true
domain = "ommiteddomainname.com"
prefix = "traefik"
frontEndRule = "PathPrefixStrip:/{{.ServiceName}}"

New version: Traefik: 2.5.3-23.el7_9.x86_64
https://traefichostname/aircraft/ Returns: 404

Config File: traefik.yml

serversTransport:
  insecureSkipVerify: true

entryPoints:
  http:
    address: ":80"
    http:
      redirections:
        entryPoint:
          to: "https"
  https:
    address: ":443"
  traefik:
    address: ":8080"
    http:
      redirections:
        entryPoint:
          to: traefiks
  traefiks:
    address: ":8443"

providers:
  providersThrottleDuration: 2s
  consulCatalog:
    exposedByDefault: true
    endpoint: 
      address: "localhost:8500"
    prefix: "traefik"

Is there a way to expose the consulCatalog discovered services available through Traefik v2.x?

Needed to modify Consul tags for Traefik version 2.x