Created
September 28, 2015 01:40
-
-
Save Zenuncl/2db57e571349f62f4adc to your computer and use it in GitHub Desktop.
Gen Self Sign Cert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# create self-signed server certificate: | |
read -p "Enter your domain [www.example.com]: " DOMAIN | |
echo "Create server key..." | |
openssl genrsa -des3 -out $DOMAIN.key 1024 | |
echo "Create server certificate signing request..." | |
SUBJECT="/C=US/ST=Mars/L=iTranswarp/O=iTranswarp/OU=iTranswarp/CN=$DOMAIN" | |
openssl req -new -subj $SUBJECT -key $DOMAIN.key -out $DOMAIN.csr | |
echo "Remove password..." | |
mv $DOMAIN.key $DOMAIN.origin.key | |
openssl rsa -in $DOMAIN.origin.key -out $DOMAIN.key | |
echo "Sign SSL certificate..." | |
openssl x509 -req -days 3650 -in $DOMAIN.csr -signkey $DOMAIN.key -out $DOMAIN.crt | |
echo "TODO:" | |
echo "Copy $DOMAIN.crt to /etc/nginx/ssl/$DOMAIN.crt" | |
echo "Copy $DOMAIN.key to /etc/nginx/ssl/$DOMAIN.key" | |
echo "Add configuration in nginx:" | |
echo "server {" | |
echo " ..." | |
echo " listen 443 ssl;" | |
echo " ssl_certificate /etc/nginx/ssl/$DOMAIN.crt;" | |
echo " ssl_certificate_key /etc/nginx/ssl/$DOMAIN.key;" | |
echo "}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment