I'm not using docker, and have no idea how to figure that out, so I'm running an LXC in ProxMox.
My domain is wildcard flushed through a cloudflared tunnel, all using this scripting setup:
I am attempting to run nexcloud onsite and it needs to be redirected
in my traefik.yml i have:
serverTransport:
insecureSkipVerify: true
still receiving error
2026-07-30T16:59:24-04:00 ERR 500 Internal Server Error error="tls: failed to verify certificate: x509: cannot validate certificate for 10.0.0.172 because it doesn't contain any IP SANs"
I have no Idea how to tell it to HEY IGNORE THAT
Also am I supposed to set these things up as "routers?"
see my config below for the service:
GNU nano 8.4 nexcloud.yml
http:
routers:
nexcloud:
rule: "Host(cloud.XXXXX.com)"
entryPoints:
- http
- https
service: nexcloud
middlewares:- security-headers-nexcloud
middlewares:
security-headers-nexcloud:
headers:
sslRedirect: true
frameDeny: true
contentTypeNosniff: true
browserXssFilter: trueservices:
nexcloud:
loadBalancer:
servers:
- url: "https://10.0.0.172/"
passHostHeader: trueserversTransport:
insecureSkipVerify: true
what is the right way to do this?
hlep