I’m expecting to be able to request https://registry.my.domain and https://registry.my.domain:5000 and be able to access to the registry container and at the same time be able to do https://portus.my.domain and access to the sslproxy container that will terminate SSL and connect to portus container.
As a temporary fix I’m just letting the sslproxy to redirect traffic from registry.my.domain:443 to registry.my.domain:5000 but that’s not what I want I don’t want to relay on that extra container just to redirect.
Notice: that I don’t need SSL termination on the registry url what I want it’s be able query registry.my.domain as if I were querying registry.my.domai:5000 and my registry have the secure flag turned on so it needs to be https
Only if you do SSL termination at the balancer so it can extract the HTTP Host header from the decrypted request.
(It is actually possible to do hostname routing for SSL requests without termination by looking at the SNI portion of the TLS handshake, but that is not supported yet. I think that made it into the new refractors balancer for 1.2, @alena?)