blob: 1586beb78d8c2cdb629694514961dcd9f148e742 (
plain)
1
2
3
4
5
6
7
|
@ECHO OFF
openssl.exe req -config openssl.cnf -new -x509 -keyout server.pem -out server.pem -days 365 -nodes
ECHO.
ECHO Done generating self-signed certificate.
ECHO Press any key to continue...
PAUSE >NUL
EXIT
|