Cannot access dashboard Proxmox lxc container

I followed the install procedure outlined on Habitats Open Tech and cannot access the dashboard. While running traefik from the commandline starts with no errors I cannot access the dashboard. Netstat only reports open port 80 with no port 8080 or 443. I am hesitant to proceed.

Share you full Traefik static and dynamic config, and docker-compose.yml if used.

Enable and check Traefik debug log (doc) and Traefik access log in JSON format (doc).

Thanks for responding. The only config file I have thus far is traefik.yaml

global:
checkNewVersion: true
sendAnonymousUsage: true

api:
dashboard: true
insecure: true
debug: true
disableDashboardAd: false

log:
level: DEBUG # TRACE DEBUG INFO WARN ERROR FATAL PANIC

entryPoints:
http:
address: ":80"
https:
address: ":443"

file:
directory: /etc/traefik/dynamic
watch: true

I have not yet configured anything further until I get past this. I am following the installation guide at https://portal.habitats.tech/Traefik-Proxy+3.x/Traefik-Proxy+3.x+-+Install As I said I am running the traefik binary from shell and the only error reported is:

ERR error="accept tcp [::]:80: use of closed network connection" entryPointName=http

and that is after terminating traefik.

It seems your tutorial installs Traefik in a virtual machine on the host. Then you need to make sure that the ports are open/published on the VM, that probably needs to be configured.

I would like to thank you very much for responding. I gave up on the "test" config and went ahead and fully configured and while the dashboard does not work I am able to now proxy connections. Is there anything I need to do to close this topic?

You set insecure: true, so dashboard is automatically listening on port 8080. But you need to open the port on container and VM.

Maybe check simple Traefik example for best practice config, there dashboard is using standard ports.