I have a small nginx web server setup at my house, and access to a CAC and reader. the CAC already has public/private x.509 certificates loaded on it. I can export the certificates no problem. I'm trying to figure out how to store the public certificate on the server, then when the user attempts to access the website, the server can use the public cert to authenticate them. Every guide that I've come across so far talks about using a certificate authority and private key.
- I have the CA.pem that goes with my CAC, but I cannot get the private-key.pem that goes with that CA file.
- Is there a way to setup a directory that nginx checks for multiple certs, instead of just one, again without needing the private key.
- This has to be done with nginx, can't use Apache.
Is this even possible? I'm very new to the whole webserver configuration piece.