Improve v0.1.1 documentation - add notice about public key

This commit is contained in:
Jakub Al-Khalili 2019-08-28 14:55:10 +02:00
parent 76fe140baa
commit c25d0ce3e8
1 changed files with 31 additions and 0 deletions

View File

@ -227,6 +227,37 @@ 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.
#### Public key
If you want to upload your public key to your Git server you need to extract it.
If key was generated by `openssl` then you need to type this to extract public key:
```bash
$ openssl rsa -in <filename> -pubout > <filename>.pub
```
If key was generated by `ssh-keygen` the public key content is located in <filename>.pub and there is no need to extract public key
#### Configure SSH authentication
Configure seed job like:
```