Created
November 6, 2018 01:43
-
-
Save LukeDemons/9e3e644affecd7981354292980f5bf50 to your computer and use it in GitHub Desktop.
generate cert by openssl
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
从 itranswarp.js 拷贝来的。添加 .crt 文件到本地「钥匙串访问」,使用 Safari 访问即可成功,Chrome 会认定你的证书发放机构不合理。