You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
215 B
7 lines
215 B
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
openssl req -x509 -nodes -days 398 -newkey rsa:2048 \
|
||
|
-keyout /etc/ssl/selfsigned.key \
|
||
|
-out /etc/ssl/selfsigned.crt \
|
||
|
-subj '/C=ES/ST=Moon/L=Moon/O=Acme Inc./OU=IT Department/CN=localhost'
|