Nginx Ingress SSL Passthrough

I am trying to add nginx ingress controller with ssl passthrough for one service and ssl termination for other services. According to the documentation present at TLS/HTTPS - NGINX Ingress Controller it leverages SNI and needs virtual domain for services and also requires to have compatible clients. What does this mean ? How do I achieve this configuration in nginx ingress/controller. ?

Necessary annotations are added while installation and for Ingress Resource for SSL Passthrough.

where you able to resolve this? been more than a year :smiley:
I am facing same issue

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  labels:
    nginx.ingress.kubernetes.io/backend-protocol: "https"
    nginx.ingress.kubernetes.io/ssl-passthrough: "true"
    nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
1 Like

Thanks for your share