Skip to content

Instantly share code, notes, and snippets.

@bocasoftware
Forked from turtlepod/make-cert.bat
Created March 17, 2019 16:44
Show Gist options
  • Save bocasoftware/7fddde29c5cdc94ca5cea939aa935c48 to your computer and use it in GitHub Desktop.
Save bocasoftware/7fddde29c5cdc94ca5cea939aa935c48 to your computer and use it in GitHub Desktop.
@echo off
set /p domain="Enter Domain: "
set OPENSSL_CONF=../conf/openssl.cnf
if not exist .\%domain% mkdir .\%domain%
..\bin\openssl req -config cert.conf -new -sha256 -newkey rsa:2048 -nodes -keyout %domain%\server.key -x509 -days 365 -out %domain%\server.crt
echo.
echo -----
echo The certificate was provided.
echo.
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment