Bot and dashboard are running on docker and are connected, but cannot auth with discord. Stuck in the loop of authenticating and redirecting back to start. I have some other stuff hosted behind traefik so I'm using it. Any help would be nice
routers:
toDashboard:
entryPoints:
- websecure
rule: "Host(`domain.duckdns.org`)"
service: dashboard
middlewares:
- header@file
tls:
certResolver: "myresolver"
options: dashboard
services:
dashboard:
loadBalancer:
servers:
- url: "http://192.168.5.182:3456/"
middlewares:
header:
headers:
customRequestHeaders:
X-Forwarded-Proto: "https"
Host: "{host}"
X-Real-IP: "{remote}"
X-Forwarded-For: "{remote}"
dashboard:
minVersion: VersionTLS13```
I get the code back from Discord, just think its not passing to the app
`"GET /callback?code=M3wXocKTXXV0wzdVC1i2AqQzySZekw HTTP/2.0" 302 189 "-" "-" 36 "toDashboard@file" "http://192.168.5.182:3456/`
👍
