Created
May 3, 2017 19:17
-
-
Save nozzlegear/aba503a67c7ea57cb97310809b24e5f3 to your computer and use it in GitHub Desktop.
Let's Encrypt domain configuration file.
This file contains 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
# Just one single domain. | |
domains = my-domain.com | |
# Key size. | |
rsa-key-size = 4096 # Or 2048 | |
# The current version of Let's Encrypt (as of May 3, 2017) is using this server. | |
server = https://acme-v01.api.letsencrypt.org/directory | |
# This email address will receive renewal reminders. | |
email = [email protected] | |
# This will run as a cronjob, so turn off the ncurses UI. | |
text = True | |
# Place the certs in the /var/www/letsencrypt folder (under .well-known/acme-challenge/). | |
authenticator = webroot | |
webroot-path = /var/www/letsencrypt/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment