Update configuration file to match defaults of version 0.3.0

This commit is contained in:
Raphaël Hertzog 2016-12-12 16:04:41 +01:00
parent 4a32ac49f5
commit 3b98bbebe6
1 changed files with 9 additions and 9 deletions

View File

@ -19,6 +19,12 @@
######################################################## ########################################################
# This is the main config file for letsencrypt.sh # # This is the main config file for letsencrypt.sh #
# # # #
# This file is looked for in the following locations: #
# $SCRIPTDIR/config (next to this script) #
# /usr/local/etc/letsencrypt.sh/config #
# /etc/letsencrypt.sh/config #
# ${PWD}/config (in current working-directory) #
# #
# Default values of this config are in comments # # Default values of this config are in comments #
######################################################## ########################################################
@ -56,13 +62,7 @@
# Output directory for challenge-tokens to be served by webserver or # Output directory for challenge-tokens to be served by webserver or
# deployed in HOOK (default: /var/www/letsencrypt) # deployed in HOOK (default: /var/www/letsencrypt)
{{ get_config('wellknown', '/var/www/letsencrypt.sh') }} {{ get_config('wellknown', '/var/www/letsencrypt') }}
# Location of private account key (default: $BASEDIR/private_key.pem)
{{ get_config('account-key', '${BASEDIR}/private_key.pem') }}
# Location of private account registration information (default: $BASEDIR/private_key.json)
{{ get_config('account-key-json', '${BASEDIR}/private_key.json') }}
# Default keysize for private keys (default: 4096) # Default keysize for private keys (default: 4096)
{{ get_config('keysize', '4096') }} {{ get_config('keysize', '4096') }}
@ -88,8 +88,8 @@
# Minimum days before expiration to automatically renew certificate (default: 30) # Minimum days before expiration to automatically renew certificate (default: 30)
{{ get_config('renew-days', '30') }} {{ get_config('renew-days', '30') }}
# Regenerate private keys instead of just signing new certificates on renewal (default: no) # Regenerate private keys instead of just signing new certificates on renewal (default: yes)
{{ get_config('private-key-renew', 'no') }} {{ get_config('private-key-renew', 'yes') }}
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1 # Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
{{ get_config('key-algo', 'rsa') }} {{ get_config('key-algo', 'rsa') }}