#79 Improve docs - add ssh key generation info

This commit is contained in:
Jakub Al-Khalili 2019-08-28 13:26:39 +02:00
parent 0ca8f4fdbf
commit 58662f9a25
1 changed files with 19 additions and 0 deletions

View File

@ -229,6 +229,25 @@ If your GitHub repository is **private** you have to configure SSH or username/p
### SSH authentication
#### Generate SSH Keys
There are two methods of SSH private key generation:
```bash
$ openssl genrsa -out <filename> 2048
```
or
```bash
$ ssh-keygen -t rsa -b 2048
$ ssh-keygen -p -f <filename> -m pem
```
Then copy content from generated file.
#### Configure SSH authentication
Configure seed job like:
```