Added key generation details to README.md

main
GarryOne 2020-03-27 01:17:37 +02:00
parent 00e4d7e856
commit 140e959df8
1 changed files with 5 additions and 1 deletions

View File

@ -14,7 +14,11 @@ Pass configuration with `env` vars
1. `SSH_PRIVATE_KEY` [required]
This should be the private key part of an ssh key pair. The public key part should be added to the authorized_keys file on the server that receives the deployment.
This should be the private key part of an ssh key pair.
The public key part should be added to the authorized_keys file on the server that receives the deployment.
The keys should be generated using the PEM format. You can us this command
`ssh-keygen -m PEM -t rsa -b 4096`
2. `REMOTE_HOST` [required]