|
| 1 | +# Uncomment and modify any variables you need |
| 2 | +# see https://github.com/srvrco/getssl/wiki/Config-variables for details |
| 3 | +# see https://github.com/srvrco/getssl/wiki/Example-config-files for example configs |
| 4 | +# |
| 5 | +# The staging server is best for testing |
| 6 | +#CA="https://acme-staging.api.letsencrypt.org" |
| 7 | +# This server issues full certificates, however has rate limits |
| 8 | +#CA="https://acme-v01.api.letsencrypt.org" |
| 9 | +CA="https://pebble:14000/dir" |
| 10 | +SERVER_TYPE="5002" |
| 11 | +#PRIVATE_KEY_ALG="rsa" |
| 12 | + |
| 13 | +# Additional domains - this could be multiple domains / subdomains in a comma separated list |
| 14 | +# Note: this is Additional domains - so should not include the primary domain. |
| 15 | +SANS="" |
| 16 | + |
| 17 | +# Acme Challenge Location. The first line for the domain, the following ones for each additional domain. |
| 18 | +# If these start with ssh: then the next variable is assumed to be the hostname and the rest the location. |
| 19 | +# An ssh key will be needed to provide you with access to the remote server. |
| 20 | +# Optionally, you can specify a different userid for ssh/scp to use on the remote server before the @ sign. |
| 21 | +# If left blank, the username on the local server will be used to authenticate against the remote server. |
| 22 | +# If these start with ftp: then the next variables are ftpuserid:ftppassword:servername:ACL_location |
| 23 | +# These should be of the form "/path/to/your/website/folder/.well-known/acme-challenge" |
| 24 | +# where "/path/to/your/website/folder/" is the path, on your web server, to the web root for your domain. |
| 25 | +ACL=('/var/www/html/.well-known/acme-challenge') |
| 26 | +# 'ssh:server5:/var/www/getssltest.hopto.org/web/.well-known/acme-challenge' |
| 27 | +# 'ssh:sshuserid@server5:/var/www/getssltest.hopto.org/web/.well-known/acme-challenge' |
| 28 | +# 'ftp:ftpuserid:ftppassword:getssltest.hopto.org:/web/.well-known/acme-challenge') |
| 29 | + |
| 30 | +#Set USE_SINGLE_ACL="true" to use a single ACL for all checks |
| 31 | +USE_SINGLE_ACL="false" |
| 32 | + |
| 33 | +# Location for all your certs, these can either be on the server (full path name) |
| 34 | +# or using ssh /sftp as for the ACL |
| 35 | +DOMAIN_CERT_LOCATION="/etc/nginx/pki/server.crt" |
| 36 | +DOMAIN_KEY_LOCATION="/etc/nginx/pki/private/server.key" |
| 37 | +CA_CERT_LOCATION="/etc/nginx/pki/chain.crt" |
| 38 | +DOMAIN_CHAIN_LOCATION="" # this is the domain cert and CA cert |
| 39 | +DOMAIN_PEM_LOCATION="" # this is the domain_key, domain cert and CA cert |
| 40 | + |
| 41 | +# The command needed to reload apache / nginx or whatever you use |
| 42 | +RELOAD_CMD="service nginx restart" |
| 43 | + |
| 44 | +# Define the server type. This can be https, ftp, ftpi, imap, imaps, pop3, pop3s, smtp, |
| 45 | +# smtps_deprecated, smtps, smtp_submission, xmpp, xmpps, ldaps or a port number which |
| 46 | +# will be checked for certificate expiry and also will be checked after |
| 47 | +# an update to confirm correct certificate is running (if CHECK_REMOTE) is set to true |
| 48 | +#SERVER_TYPE="https" |
| 49 | +#CHECK_REMOTE="true" |
0 commit comments