# Debugging priorities

**URL:** https://community.traefik.io/t/debugging-priorities/6634
**Category:** Traefik v2
**Tags:** consul-catalog, middleware
**Created:** [June 24, 2020, 8:48am UTC](https://community.traefik.io/t/debugging-priorities/6634 "2020-06-24T08:48:46Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![issac](https://sea2.discourse-cdn.com/flex020/user_avatar/community.traefik.io/issac/32/2231_2.png) [@issac](https://community.traefik.io/u/issac)
#### Post date: [June 24, 2020, 8:48am UTC](https://community.traefik.io/t/debugging-priorities/6634/1 "2020-06-24T08:48:46Z")

</div>

Hi

I have a redirect for http to https defined in my static config as follows:

```auto
            - --entrypoints.web.Address=:80
            - --entrypoints.web.http.redirections.entrypoint.priority=1
            - --entrypoints.web.http.redirections.entrypoint.scheme=https
            - --entrypoints.web.http.redirections.entrypoint.to=websecure

```

(websecure is defined and works fine)

Elsewhere I have a ConsulCatalog service that defines some specific content that I **do** want served over HTTP (and not HTTPS), which has the following labels defined in consul:

```auto
traefik.enable=true
traefik.http.routers.someservice.rule=Host(`mydomain.com`)
traefik.http.routers.someservice.priority=100
traefik.http.routers.someservice.entrypoints=web

```

My understanding is that the fact that the redirection has priority 1 should mean that the `someservice` router should deal with the request and it should never get to the http-to-https, however, a request to `http://mydomain.com/foo` is getting a 301 to `https://mydomain.com/foo` (I've tried different cache-busting URIs to ensure I'm not getting a browser-cached 301), and nothing at all shows up in the traefik access log.

Am I doing something wrong?

(And is there any way to see the priorities from the dashboard?)

Thanks!

---

<div class="post-metadata">

### Author: ![issac](https://sea2.discourse-cdn.com/flex020/user_avatar/community.traefik.io/issac/32/2231_2.png) [@issac](https://community.traefik.io/u/issac)
#### Post date: [June 24, 2020, 9:51am UTC](https://community.traefik.io/t/debugging-priorities/6634/2 "2020-06-24T09:51:01Z")

</div>

This ended up being an external LoadBalancer doing the http to https, so nevermind.

I'd still like to know about a way to view the actual configured priorities, though, if that's possible
