# Nginx Ingress SSL Passthrough

**URL:** https://discuss.kubernetes.io/t/nginx-ingress-ssl-passthrough/14377
**Category:** General Discussions
**Created:** [January 6, 2021, 12:33pm UTC](https://discuss.kubernetes.io/t/nginx-ingress-ssl-passthrough/14377 "2021-01-06T12:33:58Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![pavan\_p](https://sea2.discourse-cdn.com/flex016/user_avatar/discuss.kubernetes.io/pavan_p/32/6653_2.png) [@pavan\_p](https://discuss.kubernetes.io/u/pavan_p)
#### Post date: [January 6, 2021, 12:33pm UTC](https://discuss.kubernetes.io/t/nginx-ingress-ssl-passthrough/14377/1 "2021-01-06T12:33:58Z")

</div>

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](https://kubernetes.github.io/ingress-nginx/user-guide/tls/#ssl-passthrough) 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.

---

<div class="post-metadata">

### Author: ![k8stab](https://avatars.discourse-cdn.com/v4/letter/k/9dc877/32.png) [@k8stab](https://discuss.kubernetes.io/u/k8stab)
#### Post date: [February 22, 2022, 6:26am UTC](https://discuss.kubernetes.io/t/nginx-ingress-ssl-passthrough/14377/2 "2022-02-22T06:26:13Z")

</div>

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

---

<div class="post-metadata">

### Author: ![k8stab](https://avatars.discourse-cdn.com/v4/letter/k/9dc877/32.png) [@k8stab](https://discuss.kubernetes.io/u/k8stab)
#### Post date: [February 22, 2022, 6:28am UTC](https://discuss.kubernetes.io/t/nginx-ingress-ssl-passthrough/14377/3 "2022-02-22T06:28:17Z")

</div>

```auto
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"

```

---

<div class="post-metadata">

### Author: ![pistocop](https://sea2.discourse-cdn.com/flex016/user_avatar/discuss.kubernetes.io/pistocop/32/10943_2.png) [@pistocop](https://discuss.kubernetes.io/u/pistocop)
#### Post date: [October 2, 2022, 10:19pm UTC](https://discuss.kubernetes.io/t/nginx-ingress-ssl-passthrough/14377/4 "2022-10-02T22:19:10Z")

</div>

Thanks for your share
