-
I am fairly new to pki and acme so I want to ask some question:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @LecrisUT, thanks for the questions.
Random people can't use Let's Encrypt to make arbitrary certificates. You have to prove domain ownership by answering a challenge request—which is part of what certbot does. Does this help? |
Beta Was this translation helpful? Give feedback.
Hi @LecrisUT, thanks for the questions.
It is not possible to do this, because publicly trusted CAs only issue leaf certificates, they don't issue intermediates.
A certificate can only be signed by one signing key. So, instead, you probably want public certificates for public endpoints, and private certificates for private endpoints that your users use. The example.com website might have a let's encrypt certificate, but the email users of example.com could use privately-issued certificates for authentication to the SMTP server.
Random people can't use Let's Encrypt to make arbitrary certificates. You have to prove domain ownership by answering a challenge request—which is part of wh…