DEV Community

Discussion on: Kubernetes - Redirect HTTP to HTTPS with ELB and the nginx ingress controller

Collapse
 
tprakash17 profile image
DevOps Engineer

I got the point of putting following into ConfigMap

if ( $http_x_forwarded_proto = http ) {
rewrite .* https://$host$1 permanent;
}

Can you please paste configmap yaml just want to see the syntax how is above put in there.

Also, listeners are http and https at ELB? Not TCP right

Collapse
 
tprakash17 profile image
DevOps Engineer

Got this working.
Changed listeners on ELB to HTTP and HTTPS and following annotations on ingress seems to be working. SSL certificate still terminating on ELB.

Ingress annotation
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"

ELB listener setting.