mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
13 lines
143 B
Bash
13 lines
143 B
Bash
#!/bin/sh
|
|
|
|
|
|
cd keys
|
|
|
|
openssl genrsa -out private 4096
|
|
chmod 0400 private
|
|
openssl rsa -in private -out public -pubout
|
|
|
|
cd ..
|
|
|
|
bash show-info.sh
|