Hi there
i am facing an issue , trying to implement 2 traefik instances to handle 2 different domains...
One instance is on VLAN10 and the other instance is on VLAN20
Both instance can discuss each other over tcp of course (via FW rule)
So apparently, this is not a network issue
On the first instance, the one which is facing internet, i added a rule like this :
tcp:
routers:
internal-traefik-rtr:
entryPoints:
- websecure
rule: "HostSNIRegexp(`domain2.com`) || HostSNIRegexp(`{subdomain:[a-z]+}.domain2.com`)"
service: internal-traefik-svc
tls:
passthrough: true
services:
internal-traefik-svc:
loadBalancer:
servers:
- address: "192.168.20.87:443"
When i go to the traefik GUI, i do not see any TCP routers or services
And when i try to go to traefik.domain2.com, i got of course
http: TLS handshake error from <IP>:57210: remote error: tls: unknown certificate
Is there anything special i need to add in other yaml files ?
Thanks for your help