Browse Source

Add FTP info to config and README files

pull/41/head
Bob Swift 10 years ago
parent
commit
798e38b009
2 changed files with 9 additions and 1 deletions
  1. +3
    -1
      README.md
  2. +6
    -0
      create-getssl-config

+ 3
- 1
README.md View File

@ -83,8 +83,10 @@ SANS=www.example.org,example.edu,example.net,example.org,www.example.com,www.exa
# Acme Challenge Location. The first line for the domain, the following ones for each additional domain.
# If these start with ssh: then the next variable is assumed to be the hostname and the rest the location.
# An ssh key will be needed to provide you with access to the remote server.
# If these start with ftp: then the next variables are ftpuserid:ftppassword:servername:ACL_location
ACL=('/var/www/example.com/web/.well-known/acme-challenge'
'ssh:server5:/var/www/example.com/web/.well-known/acme-challenge')
'ssh:server5:/var/www/example.com/web/.well-known/acme-challenge'
'ftp:ftpuserid:ftppassword:example.com:/web/.well-known/acme-challenge')
# Location for all your certs, these can either be on the server (so full path name) or using ssh as for the ACL
DOMAIN_CERT_LOCATION="ssh:server5:/etc/ssl/domain.crt"


+ 6
- 0
create-getssl-config View File

@ -173,6 +173,12 @@ write_domain_template() { # write out a template file for a domain.
SANS=${SANS}
# Acme Challenge Location. The first entry for the domain, the following ones for each additional domain.
# If these start with ssh: then the next variable is assumed to be the hostname and the rest the location.
# An ssh key will be needed to provide you with access to the remote server.
# If these start with ftp: then the next variables are ftpuserid:ftppassword:servername:ACL_location
#ACL=('/var/www/${DOMAIN}/web/.well-known/acme-challenge'
# 'ssh:server5:/var/www/${DOMAIN}/web/.well-known/acme-challenge'
# 'ftp:ftpuserid:ftppassword:${DOMAIN}:/web/.well-known/acme-challenge')
ACL=(${ACL[*]})
# Location for all your certs, these can either be on the server (so full path name) or using ssh as for the ACL


Loading…
Cancel
Save