-
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
Feature request: ssl-redirect on gce controller #1180
Comments
i would not expect it to work it any time soon. here is feature request for https redirection and it's almost 2 years old https://issuetracker.google.com/issues/35904733 |
Another workaround is to run a proxy between GCLB and your app that checks the Or you can implement this in your app. This is a pretty commonly implemented header by most load balancers/cdns to identify client->proxy/lb connections. It will look like this:
In either case (workaround or some GCP solution), the request has already transmitted the data in plaintext over the internet so if that initial request had any sensitive data, it could already be sniffed. If you don't want that, you can use this GCE Ingress annotation to disable requests to port 80 completely:
|
This issue was moved to kubernetes/ingress-gce#51 |
Is there any plan to support
ingress.kubernetes.io/ssl-redirect
annotation on gce controller?If not, what's the recommended workaround for this? Examining headers is not always possible, since backend application is often out of our control.
The text was updated successfully, but these errors were encountered: