-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTTP -> HTTPS on ELB failing #6456
Comments
@kristof-mattei: The label(s) In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Closing. Please check the static manifests or the script that uses the helm chart to generate such files The important part here is the http-snippet that generated the redirect server block. |
Please use the #ingress-nginx Kubernetes Slack channel to ask questions like this one. Thanks! |
actually, it's embarrassing when customers see "http://". These are my values :
really, it's embarrassing |
I tried to install the ingress nginx helm chart with the values that @aledbf link, but its not working with https im using EKS 1.9 and ingress nginx chart 0.44.0 and AWS certificate |
For the last week I've been working on trying to get HTTP -> HTTPS redirection to work with ELB and TLS termination.
I found countless of documents and tried all of the different settings, but either I get a 504 GATEWAY timeout, where stuff is broken, or a TOO MANY REDIRECTS.
My template for this change is:
#2724 (comment)
My setup looks as follows:
Adding
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
to an ingress or not doesn't change what gets emitted in the/etc/nginx/nginx.conf
.Irrespective of that last annotation the following gets generated:
I also tried enabling the PROXY protocol instead of the forwarded headers, and then adding the
force-ssl-redirect
setting, but that results in an endless redirect.While I could try and do the port-hack, I wonder what it is that I am missing here to get the same result?
The text was updated successfully, but these errors were encountered: