Skip to content

Commit

Permalink
r Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dusterio committed Dec 14, 2016
1 parent 0f392b3 commit d04da34
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,34 @@ Lumen application key

### Gateway variables

#### PRIVATE_KEY

Put your private RSA key in this variable

You can generate the key with OpenSSL:

```bash
$ openssl genrsa -out private.key 4096
```

Replace new line characters with \n:
```bash
awk 1 ORS='\\n' private.key
```

#### PUBLIC_KEY

Put your public RSA key in this variable

#### PRIVATE_KEY
Extract public key using OpenSSL:
```bash
$ openssl rsa -in private.key -pubout > public.key
```

Put your private RSA key in this variable
Replace new line characters with \n:
```bash
awk 1 ORS='\\n' public.key
```

#### GATEWAY_SERVICES

Expand Down

0 comments on commit d04da34

Please sign in to comment.