Replies: 2 comments 2 replies
-
Did you check the tutorial videos related to Kubernetes, Helm charts and other on our Youtube channel? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Solved it... If anyone else i looking: This is the final nginx conf that worked: server {
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi I have been pulling my hair to get this to work in openshift, but I was not able so I opted for an nginx proxy infront of the ejbca container.
My goal is:
Display EJBCA RA Web and adminweb at https://pki.company.com/ with a certificate from another CA
Redirect all HTTP-requests to HTTPS, except for OCSP and CRL.
Require a client SSL certificate when accessing https://pki.company.local/adminweb/ (this is the default - managementCA superadmin cert)
Still answer to requests on https://pki.company.local/ejbca/*
With the current conf using nginx I'm able to terminate SSL in nginx and in firefox I get the notification to use the superadmin cert.... but then it stops.
So it is almost working but something is missing, maybe the requests are not been sent back to the client?
---nginx.conf---
events {
}
http {
server {
HTTP server för inkommande trafik
listen 8080;
server_name pki.company.com;
}
server {
# HTTPS server med klientcertifikatsvalidering
listen 8443 ssl;
server_name pki.company.com;
}
}
Beta Was this translation helpful? Give feedback.
All reactions