Created
March 13, 2015 13:48
-
-
Save mpco/dcaddec77c3877dcf561 to your computer and use it in GitHub Desktop.
生成服务器证书?Maybe
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 " ssl on;" | |
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