1
0
Fork 0

Fix documentation + Letsencrypt

This commit is contained in:
Joao M 2022-09-02 19:59:59 +00:00
parent b76daa32f1
commit f8046670a9
4 changed files with 23 additions and 23 deletions

View file

@ -226,7 +226,7 @@ class Certbot:
for item in os.listdir(letsencrypt_certs):
path = os.path.join(letsencrypt_certs, item)
if os.path.isdir(path):
cert = Functions.load(os.path.join(path, "fullchain.pem"))
cert = Functions.load(os.path.join(path, "cert.pem"))
key = Functions.load(os.path.join(path, "privkey.pem"))
filename = "%s/%s.pem" % (self.certs, item)
self.merge_certificate(cert, key, filename)