Open source web app engine for the Digital Telepresence Platform.
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.
 
 
 
 
 

9 lines
278 B

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