# Consul Catalog always shows 404

**URL:** https://community.traefik.io/t/consul-catalog-always-shows-404/7426
**Category:** Traefik v2
**Tags:** consul-catalog
**Created:** [August 26, 2020, 4:40pm UTC](https://community.traefik.io/t/consul-catalog-always-shows-404/7426 "2020-08-26T16:40:12Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![hongkongkiwi](https://sea2.discourse-cdn.com/flex020/user_avatar/community.traefik.io/hongkongkiwi/32/2484_2.png) [@hongkongkiwi](https://community.traefik.io/u/hongkongkiwi)
#### Post date: [August 26, 2020, 4:40pm UTC](https://community.traefik.io/t/consul-catalog-always-shows-404/7426/1 "2020-08-26T16:40:12Z")

</div>

I'm having a lot of trouble getting Consul Catalog to work.

Anytime I visit the address, it shows up as 404 and in the logs the request shows up as:  
`[26/Aug/2020:16:37:12 +0000] "GET / HTTP/2.0" - - "-" "-" 374 "-" "-" 0ms`

According to the logs, Traefik picks up the service just fine.... here's the entry from the logs which seems to look totally correct according to Traefik:

```auto
{
  "http": {
    "routers": {
      "grafana": {
        "service": "grafana",
        "rule": "Host(`grafana.example.com`)"
      }
    },
    "services": {
      "grafana": {
        "loadBalancer": {
          "servers": [
            {
              "url": "http://10.10.0.8:3000"
            }
          ],
          "passHostHeader": true
        }
      }
    }
  }
}

```

I'm running from a docker with the following command lines:

```auto
      - "--log"
      - "--log.level=DEBUG"
      - "--accesslog=true"
      - "--providers.consulCatalog=true"
      - "--providers.consulCatalog.requireConsistent=false"
      - "--providers.consulCatalog.stale=false"
      - "--providers.consulCatalog.cache=false"
      - "--providers.consulCatalog.endpoint.address=consul:8500"
      - "--providers.consulCatalog.endpoint.scheme=http"
      - "--providers.consulCatalog.endpoint.datacenter=sfo2"
      - "--providers.consulCatalog.refreshInterval=15s"
      - "--providers.consulCatalog.exposedByDefault=true"
      - "--entrypoints.web.address=:80/tcp"
      - "--entrypoints.web.http.redirections.entryPoint.to=websecure"
      - "--entrypoints.web.http.redirections.entryPoint.scheme=https"
      - "--entrypoints.websecure.address=:443/tcp"
      - "--api.dashboard=true"
      - "--api.insecure=true"
      - "--providers.file.directory=/traefik/config"
      - "--providers.file.watch=true"

```
