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 a2bb66b commit 31c247bCopy full SHA for 31c247b
README.md
@@ -105,6 +105,13 @@ Commands above spin up everything needed. UI will be at localhost:6500
105
1. Open http://localhost:6500 - there you can play with user `admin/admin`
106
107
108
+# JWT token key generation
109
+
110
+1. `openssl genrsa -out key_priv 1024`
111
+2. `openssl rsa -in key_priv -pubout -outform PEM -out key.pem`
112
+3. `openssl pkcs8 -topk8 -inform PEM -in key_priv -out key -nocrypt`
113
+4. `rm -f key_priv`
114
115
116
# Stub data
117
0 commit comments