Skip to content

Instantly share code, notes, and snippets.

@jeremyfelt
Created November 13, 2015 03:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyfelt/850d62e96c4f6aa82d8a to your computer and use it in GitHub Desktop.
Save jeremyfelt/850d62e96c4f6aa82d8a to your computer and use it in GitHub Desktop.
Let's Encrypt Configuration
# This is an example of the kind of things you can do in a configuration file.
# All flags used by the client can be configured here. Run Let's Encrypt with
# "--help" to learn more about the available options.
# Use a 4096 bit RSA key instead of 2048
rsa-key-size = 4096
# Always use the staging/testing server
# server = https://acme-staging.api.letsencrypt.org/directory
server = https://acme-v01.api.letsencrypt.org/directory
# Uncomment and update to register with the specified e-mail address
email = emailaddress@gmail.com
# Uncomment to use a text interface instead of ncurses
text = True
# Uncomment to use the standalone authenticator on port 443
# authenticator = standalone
# standalone-supported-challenges = tls-sni-01
# Uncomment to use the webroot authenticator. Replace webroot-path with the
# path to the public_html / webroot folder being served by your web server.
authenticator = webroot
webroot-path = /var/www/path/to/website/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment