2017-02-11 05:24:00 +00:00
|
|
|
# Using deploy api
|
2017-02-09 02:02:00 +00:00
|
|
|
|
2017-02-11 05:24:00 +00:00
|
|
|
Here are the scripts to deploy the certs/key to the server/services.
|
|
|
|
|
|
|
|
## 1. Deploy the certs to your cpanel host.
|
|
|
|
|
|
|
|
(cpanel deploy hook is not finished yet, this is just an example.)
|
|
|
|
|
|
|
|
Before you can deploy your cert, you must [issue the cert first](https://github.com/Neilpang/acme.sh/wiki/How-to-issue-a-cert).
|
|
|
|
|
|
|
|
Then you can deploy now:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
export DEPLOY_CPANEL_USER=myusername
|
|
|
|
export DEPLOY_CPANEL_PASSWORD=PASSWORD
|
|
|
|
acme.sh --deploy -d example.com --deploy --deploy-hook cpanel
|
|
|
|
```
|
|
|
|
|
|
|
|
## 2. Deploy ssl cert on kong proxy engine based on api.
|
|
|
|
|
|
|
|
Before you can deploy your cert, you must [issue the cert first](https://github.com/Neilpang/acme.sh/wiki/How-to-issue-a-cert).
|
|
|
|
|
|
|
|
(TODO)
|
|
|
|
|
|
|
|
## 3. Deploy the cert to remote server through SSH access.
|
2017-02-09 02:02:00 +00:00
|
|
|
|
|
|
|
The ssh deploy plugin allows you to deploy certificates to a remote host
|
|
|
|
using SSH command to connect to the remote server. The ssh plugin is invoked
|
|
|
|
with the following command...
|
|
|
|
|
|
|
|
```bash
|
|
|
|
acme.sh --deploy -d example.com --deploy-hook ssh
|
|
|
|
```
|
|
|
|
Prior to running this for the first time you must tell the plugin where
|
|
|
|
and how to deploy the certificates. This is done by exporting the following
|
2017-02-09 02:13:00 +00:00
|
|
|
environment variables. This is not required for subsequent runs as the
|
2017-02-09 02:02:00 +00:00
|
|
|
values are stored by acme.sh in the domain configuration files.
|
|
|
|
|
|
|
|
Required...
|
|
|
|
```bash
|
2017-02-12 16:17:23 +00:00
|
|
|
export ACME_DEPLOY_SSH_USER=username
|
2017-02-09 02:02:00 +00:00
|
|
|
```
|
|
|
|
Optional...
|
|
|
|
```bash
|
2017-02-12 16:17:23 +00:00
|
|
|
export ACME_DEPLOY_SSH_CMD=custom ssh command
|
|
|
|
export ACME_DEPLOY_SSH_SERVER=url or ip address of remote host
|
|
|
|
export ACME_DEPLOY_SSH_KEYFILE=filename for private key
|
|
|
|
export ACME_DEPLOY_SSH_CERTFILE=filename for certificate file
|
|
|
|
export ACME_DEPLOY_SSH_CAFILE=filename for intermediate CA file
|
|
|
|
export ACME_DEPLOY_SSH_FULLCHAIN=filename forfullchain file
|
|
|
|
export ACME_DEPLOY_SSH_REMOTE_CMD=command to execute on remote host
|
|
|
|
export ACME_DEPLOY_SSH_BACKUP=yes or no
|
2017-02-09 02:02:00 +00:00
|
|
|
```
|
|
|
|
|
2017-02-12 16:17:23 +00:00
|
|
|
**ACME_DEPLOY_SSH_USER**
|
2017-02-09 02:02:00 +00:00
|
|
|
Username at the remote host that SSH will login with. Note that
|
|
|
|
SSH must be able to login to remote host without a password... SSH Keys
|
|
|
|
must have been exchanged with the remote host. Validate and test that you
|
|
|
|
can login to USER@URL from the host running acme.sh before using this script.
|
|
|
|
|
|
|
|
The USER@URL at the remote server must also have has permissions to write to
|
|
|
|
the target location of the certificate files and to execute any commands
|
|
|
|
(e.g. to stop/start services).
|
2017-02-12 16:17:23 +00:00
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_CMD**
|
2017-02-11 21:11:27 +00:00
|
|
|
You can customize the ssh command used to connect to the remote host. For example
|
|
|
|
if you need to connect to a specific port at the remote server you can set this
|
2017-02-12 16:17:23 +00:00
|
|
|
to, for example, "ssh -p 22" or to use `sshpass` to provide password inline
|
|
|
|
instead of exchanging ssh keys (this is not recommended, using keys is
|
|
|
|
more secure).
|
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_SERVER**
|
2017-02-09 02:02:00 +00:00
|
|
|
URL or IP Address of the remote server. If not provided then the domain
|
|
|
|
name provided on the acme.sh --deploy command line is used.
|
2017-02-12 16:17:23 +00:00
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_KEYFILE**
|
2017-02-09 02:13:00 +00:00
|
|
|
Target filename for the private key issued by LetsEncrypt.
|
2017-02-12 16:17:23 +00:00
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_CERTFILE**
|
|
|
|
Target filename for the certificate issued by LetsEncrypt.
|
|
|
|
If this is the same as the previous filename (for keyfile) then it is
|
|
|
|
appended to the same file.
|
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_CAFILE**
|
2017-02-09 02:13:00 +00:00
|
|
|
Target filename for the CA intermediate certificate issued by LetsEncrypt.
|
2017-02-12 16:17:23 +00:00
|
|
|
If this is the same as a previous filename (for keyfile or certfile) then
|
|
|
|
it is appended to the same file.
|
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_FULLCHAIN**
|
2017-02-09 02:13:00 +00:00
|
|
|
Target filename for the fullchain certificate issued by LetsEncrypt.
|
2017-02-12 16:17:23 +00:00
|
|
|
If this is the same as a previous filename (for keyfile, certfile or
|
|
|
|
cafile) then it is appended to the same file.
|
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_REMOTE_CMD**
|
2017-02-09 02:02:00 +00:00
|
|
|
Command to execute on the remote server after copying any certificates. This
|
2017-02-11 21:11:27 +00:00
|
|
|
could be any additional command required for example to stop and restart
|
|
|
|
the service.
|
2017-02-12 16:17:23 +00:00
|
|
|
|
|
|
|
**ACME_DEPLOY_SSH_BACKUP**
|
2017-02-09 02:02:00 +00:00
|
|
|
Before writing a certificate file to the remote server the existing
|
|
|
|
certificate will be copied to a backup directory on the remote server.
|
|
|
|
These are placed in a hidden directory in the home directory of the SSH
|
|
|
|
user
|
|
|
|
```bash
|
|
|
|
~/.acme_ssh_deploy/[domain name]-backup-[timestamp]
|
|
|
|
```
|
|
|
|
Any backups older than 180 days will be deleted when new certificates
|
2017-02-11 21:42:44 +00:00
|
|
|
are deployed. This defaults to "yes" set to "no" to disable backup.
|
2017-02-12 16:17:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
###Eamples using SSH deploy
|
|
|
|
The following example illustrates deploying certifcates to a QNAP NAS
|
|
|
|
running QTS 4.2
|
|
|
|
|
|
|
|
```bash
|
|
|
|
export ACME_DEPLOY_SSH_USER="admin"
|
|
|
|
export ACME_DEPLOY_SSH_KEYFILE="/etc/stunnel/stunnel.pem"
|
|
|
|
export ACME_DEPLOY_SSH_CERTFILE="/etc/stunnel/stunnel.pem"
|
|
|
|
export ACME_DEPLOY_SSH_CAFILE="/etc/stunnel/uca.pem"
|
|
|
|
export ACME_DEPLOY_SSH_REMOTE_CMD="/etc/init.d/stunnel.sh restart"
|
|
|
|
|
|
|
|
acme.sh --deploy -d qnap.example.com --deploy-hook ssh
|
|
|
|
```
|
|
|
|
|
|
|
|
The next example illustates deploying certificates to a Unifi
|
|
|
|
Contolller (tested with version 5.4.11).
|
|
|
|
|
|
|
|
```bash
|
|
|
|
export ACME_DEPLOY_SSH_USER="root"
|
|
|
|
export ACME_DEPLOY_SSH_KEYFILE="/var/lib/unifi/unifi.example.com.key"
|
|
|
|
export ACME_DEPLOY_SSH_FULLCHAIN="/var/lib/unifi/unifi.example.com.cer"
|
|
|
|
export ACME_DEPLOY_SSH_REMOTE_CMD="openssl pkcs12 -export \
|
|
|
|
-inkey /var/lib/unifi/unifi.example.com.key \
|
|
|
|
-in /var/lib/unifi/unifi.example.com.cer \
|
|
|
|
-out /var/lib/unifi/unifi.example.com.p12 \
|
|
|
|
-name ubnt -password pass:temppass \
|
|
|
|
&& keytool -importkeystore -deststorepass aircontrolenterprise \
|
|
|
|
-destkeypass aircontrolenterprise -destkeystore /var/lib/unifi/keystore \
|
|
|
|
-srckeystore /var/lib/unifi/unifi.example.com.p12 \
|
|
|
|
-srcstoretype PKCS12 -srcstorepass temppass -alias ubnt -noprompt \
|
|
|
|
&& service unifi restart"
|
|
|
|
|
|
|
|
acme.sh --deploy -d qnap.example.com --deploy-hook ssh
|
|
|
|
```
|
|
|
|
Note how in this exmple we execute several commands on the remote host
|
|
|
|
after the certificate files have been copied... to generate a pkcs12 file
|
|
|
|
compatible with Unifi, to import it into the Unifi keystore and then finaly
|
|
|
|
to restart the service.
|