Created
September 12, 2017 01:35
-
-
Save tristansokol/5e49be8adcdeaf9750db8089ae7df599 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
# Flags that we are using certbot on a different computer than the host. | |
manual | |
# Tells certbot where we want to store the ouput of respective processes | |
config-dir = ./config | |
logs-dir = ./logs | |
work-dir = ./work | |
#Specifies the domains that we want to create certificates for. | |
domains = example.com,www.example.com | |
#Uses the http request-response authentication method. | |
preferred-challenges = http | |
#create a new certificate, even if this one isn't expired already | |
force-renewal | |
#The following options are mainly to prevent unessecary interactions. | |
email = [email protected] | |
agree-tos | |
manual-public-ip-logging-ok |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment