Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

ikcarellano
Copy link

Allow to access OCSP/CRL endpoints over HTTP. It is a recommendation of RFCs.

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:
Copy link
Contributor

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: "/" }
Copy link
Contributor

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"
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants