1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-26 07:41:33 +03:00

consistent naming of PEM files in CONFIG.py

This commit is contained in:
Seth Schoen
2014-11-17 15:00:36 -08:00
parent 16af948b36
commit 0bbec49880

View File

@@ -40,8 +40,8 @@ RSA_KEY_SIZE = 2048
difficulty = 23
# Let's Encrypt cert and chain files
CERT_PATH = CERT_DIR + "letsencrypt-cert.pem"
CHAIN_PATH = CERT_DIR + "letsencrypt-chain.pem"
CERT_PATH = CERT_DIR + "cert-letsencrypt.pem"
CHAIN_PATH = CERT_DIR + "chain-letsencrypt.pem"
#Invalid Extension
INVALID_EXT = ".acme.invalid"