Created
May 9, 2016 18:16
-
-
Save omkar0001/418b53a8946235d69fa8683869e046ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# the domain we want to get the cert for; | |
# technically it's possible to have multiple of this lines, but it only worked | |
# with one domain for me, another one only got one cert, so I would recommend | |
# separate config files per domain. | |
domains = webhook.idelivr.info | |
# increase key size | |
rsa-key-size = 2048 # Or 4096 | |
# the current closed beta (as of 2015-Nov-07) is using this server | |
server = https://acme-v01.api.letsencrypt.org/directory | |
# this address will receive renewal reminders | |
email = [email protected] | |
# turn off the ncurses UI, we want this to be run as a cronjob | |
text = True | |
# authenticate by placing a file in the webroot (under .well-known/acme-challenge/) | |
# and then letting LE fetch it | |
authenticator = webroot | |
webroot-path = /usr/share/nginx/letsencrypt/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment