DTP Social Engine
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
275 B

#!/bin/bash
openssl genrsa -out dtp-webapp.key
openssl req -new -out dtp-webapp.csr -key dtp-webapp.key -config openssl.cnf
openssl x509 -req -days 3650 -in dtp-webapp.csr -signkey dtp-webapp.key -out dtp-webapp.crt -extensions v3_req -extfile openssl.cnf
rm dtp-webapp.csr