Created
October 15, 2015 17:29
-
-
Save jjeaton/b53e21a0740f663bc306 to your computer and use it in GitHub Desktop.
Bash script to generate self-signed certificates for local dev.
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 | |
################################################################################ | |
# Generates a self-signed certificate based on a domain name parameter | |
# Domain name should be the hostname and TLD only. | |
# Key and certificate will be output into the current working directory. | |
# This is useful for generating certificates to be used with VVV. | |
# | |
# @link https://github.com/Varying-Vagrant-Vagrants/VVV/wiki/Site-specific-self-signed-SSL-certificates | |
################################################################################ | |
if [ "$#" -ne 1 ] | |
then | |
echo "Usage: create_ssl <example.com>" | |
exit 1 | |
fi | |
openssl genrsa -out $1.key 2048 | |
openssl req -new -x509 -key $1.key -out $1.cert -days 3650 -subj /CN=$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment