mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-21 16:59:08 +00:00
7 lines
268 B
Bash
7 lines
268 B
Bash
![]() |
openssl genrsa -des3 -out server.key 2048
|
||
|
openssl req -new -key server.key -out server.csr
|
||
|
openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt
|
||
|
cp server.key server.key.copy
|
||
|
openssl rsa -in server.key.copy -out server.key
|
||
|
rm server.key.copy
|