We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f392b3 commit d04da34Copy full SHA for d04da34
README.md
@@ -70,13 +70,34 @@ Lumen application key
70
71
### Gateway variables
72
73
+#### PRIVATE_KEY
74
+
75
+Put your private RSA key in this variable
76
77
+You can generate the key with OpenSSL:
78
79
+```bash
80
+$ openssl genrsa -out private.key 4096
81
+```
82
83
+Replace new line characters with \n:
84
85
+awk 1 ORS='\\n' private.key
86
87
88
#### PUBLIC_KEY
89
90
Put your public RSA key in this variable
91
-#### PRIVATE_KEY
92
+Extract public key using OpenSSL:
93
94
+$ openssl rsa -in private.key -pubout > public.key
95
96
-Put your private RSA key in this variable
97
98
99
+awk 1 ORS='\\n' public.key
100
101
102
#### GATEWAY_SERVICES
103
0 commit comments