A web application allowing people to create an account, configure a profile, and share a list of URLs on that profile.
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
268 B

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