Last active
June 28, 2024 05:28
-
-
Save antillean/8517fba47df25a98100a to your computer and use it in GitHub Desktop.
Sample letsencrypt-cli.ini file
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
# Becomes /etc/letsencrypt/cli.ini. | |
# 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 | |
# Uncomment and update to register with the specified e-mail address | |
email = [email protected] | |
# Uncomment and update to generate certificates for the specified | |
# domains. | |
domains = sub.example.com, sub2.example.com, sub3.test.example | |
# 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 = http-01 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment