Created
February 21, 2018 23:20
-
-
Save PilotBob/9c7d259c965928c15765b2ca2eded889 to your computer and use it in GitHub Desktop.
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
@echo off | |
REM IN YOUR SSL FOLDER, SAVE THIS FILE AS: makeCert.bat | |
REM AT COMMAND LINE IN YOUR SSL FOLDER, RUN: makecert | |
REM IT WILL CREATE THESE FILES: example.cnf, example.crt, example.key | |
REM IMPORT THE .crt FILE INTO CHROME Trusted Root Certification Authorities | |
REM REMEMBER TO RESTART APACHE OR NGINX AFTER YOU CONFIGURE FOR THESE FILES | |
REM PLEASE UPDATE THE FOLLOWING VARIABLES FOR YOUR NEEDS. | |
SET HOSTNAME=yourhouse.name.here | |
SET DOT=com | |
SET COUNTRY=US | |
SET STATE=FL | |
SET CITY=City | |
SET ORGANIZATION=Orgname | |
SET ORGANIZATION_UNIT=Unit | |
SET EMAIL=webmaster@%HOSTNAME%.%DOT% | |
( | |
echo [req] | |
echo default_bits = 2048 | |
echo prompt = no | |
echo default_md = sha256 | |
echo x509_extensions = v3_req | |
echo distinguished_name = dn | |
echo: | |
echo [dn] | |
echo C = %COUNTRY% | |
echo ST = %STATE% | |
echo L = %CITY% | |
echo O = %ORGANIZATION% | |
echo OU = %ORGANIZATION_UNIT% | |
echo emailAddress = %EMAIL% | |
echo CN = %HOSTNAME%.%DOT% | |
echo: | |
echo [v3_req] | |
echo subjectAltName = @alt_names | |
echo: | |
echo [alt_names] | |
echo DNS.2 = %HOSTNAME%.%DOT% | |
)>%HOSTNAME%.cnf | |
openssl req -new -x509 -newkey rsa:2048 -sha256 -nodes -keyout %HOSTNAME%.key -days 3560 -out %HOSTNAME%.crt -config %HOSTNAME%.cnf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment