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.
6 lines
215 B
6 lines
215 B
#!/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'
|
|
|