letsencrypt-sh-formula/letsencrypt-sh/files/config

108 lines
4.5 KiB
Plaintext

{% from "letsencrypt-sh/map.jinja" import letsencrypt_sh with context %}
{% set cfg_client = salt['pillar.get']('letsencrypt-sh:config', {}) -%}
{% do cfg_client.update({
'basedir': letsencrypt_sh.basedir,
'domains-txt': letsencrypt_sh.domains_txt,
})
-%}
{%- if use_default_hook -%}
{%- do cfg_client.setdefault('hook', letsencrypt_sh.hook_script) -%}
{%- endif -%}
{%- macro get_config(configname, default_value) -%}
{%- set varname = configname.replace("-", "_") -%}
{%- if configname in cfg_client -%}
{{ varname|upper }}="{{ cfg_client[configname] }}"
{%- else -%}
#{{ varname|upper }}="{{ default_value }}"
{%- endif -%}
{%- endmacro -%}
# This file is managed by Salt, do not edit by hand!
# Based on letsencrypt.sh version 0.3.0 default config
########################################################
# 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 #
########################################################
# Resolve names to addresses of IP version only. (curl)
# supported values: 4, 6
# default: <unset>
{{ get_config('ip_version', '') }}
# Path to certificate authority (default: https://acme-v01.api.letsencrypt.org/directory)
{{ get_config('ca', 'https://acme-v01.api.letsencrypt.org/directory') }}
# Path to license agreement (default: https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf)
{{ get_config('license', 'https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf') }}
# Which challenge should be used? Currently http-01 and dns-01 are supported
{{ get_config('challengetype', 'http-01') }}
# Path to a directory containing additional config files, allowing to override
# the defaults found in the main configuration file. Additional config files
# in this directory needs to be named with a '.sh' ending.
# default: <unset>
{{ get_config('config_d', '') }}
# Base directory for account key, generated certificates and list of domains (default: $SCRIPTDIR -- uses config directory if undefined)
{{ get_config('basedir', '/var/lib/letsencrypt.sh') }}
# File containing the list of domains to request certificates for (default: $BASEDIR/domains.txt)
{{ get_config('domains-txt', '${BASEDIR}/domains.txt') }}
# Output directory for generated certificates
{{ get_config('certdir', '${BASEDIR}/certs') }}
# Directory for account keys and registration information
{{ get_config('accountdir', '${BASEDIR}/accounts') }}
# Output directory for challenge-tokens to be served by webserver or
# deployed in HOOK (default: /var/www/letsencrypt)
{{ get_config('wellknown', '/var/www/letsencrypt') }}
# Default keysize for private keys (default: 4096)
{{ get_config('keysize', '4096') }}
# Path to openssl config file (default: <unset> - tries to figure out system default)
{{ get_config('openssl_cnf', '') }}
# Program or function called in certain situations
#
# After generating the challenge-response, or after failed challenge (in this case altname is empty)
# Given arguments: clean_challenge|deploy_challenge altname token-filename token-content
#
# After successfully signing certificate
# Given arguments: deploy_cert domain path/to/privkey.pem path/to/cert.pem path/to/fullchain.pem
#
# BASEDIR and WELLKNOWN variables are exported and can be used in an external program
# default: <unset>
{{ get_config('hook', '') }}
# Chain clean_challenge|deploy_challenge arguments together into one hook call per certificate (default: no)
{{ get_config('hook-chain', 'no') }}
# Minimum days before expiration to automatically renew certificate (default: 30)
{{ get_config('renew-days', '30') }}
# Regenerate private keys instead of just signing new certificates on renewal (default: yes)
{{ get_config('private-key-renew', 'yes') }}
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
{{ get_config('key-algo', 'rsa') }}
# E-mail to use during the registration (default: <unset>)
{{ get_config('contact-email', '') }}
# Lockfile location, to prevent concurrent access (default: $BASEDIR/lock)
{{ get_config('lockfile', '${BASEDIR}/lock') }}
# Option to add CSR-flag indicating OCSP stapling to be mandatory (default: no)
{{ get_config('ocsp-must-staple', 'no') }}