-
Notifications
You must be signed in to change notification settings - Fork 2
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
Allow access to VA endpoints via HTTP #40
base: main
Are you sure you want to change the base?
Conversation
Disable http redirect and let envoy to do that.
Allow to access ocsp/crl service over http. It is a recommendation of RFCs.
@@ -71,6 +71,18 @@ data: | |||
- name: backend | |||
domains: ["*"] | |||
routes: | |||
- match: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should add a comment explaining this change i.e. "Allow accessing VA services (CRL +OCSP) over HTTP without TLS. This is stated in RFC 5280 and it makes sense. Information only contains public non-confidential/sensitive data and contains signatures to prevent tampering and repudation"
disabled: true | ||
envoy.filters.http.jwt_authn: | ||
"@type": type.googleapis.com/envoy.extensions.filters.http.jwt_authn.v3.PerRouteConfig | ||
disabled: true | ||
- match: { prefix: "/" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And then add another comment here: "All non-VA traffic redirect from HTTP to HTTPS"
@@ -9,7 +9,7 @@ metadata: | |||
nginx.ingress.kubernetes.io/ssl-passthrough: "true" | |||
#Routed Service recives HTTPS connections | |||
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" | |||
nginx.ingress.kubernetes.io/force-ssl-redirect: "true" | |||
nginx.ingress.kubernetes.io/force-ssl-redirect: "false" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here also remove this line since it defaults to false
Allow to access OCSP/CRL endpoints over HTTP. It is a recommendation of RFCs.