Date: 2009jun16
OS: Windows
Q. How do I make a self-signed certificate with no password?
A. If you have an Apache and openssl package installed, do this on the command line:
cd "C:\Program Files\Apache Group\Apache2\bin"
openssl genrsa 1024 > server.key
openssl req -config ..\conf\openssl.cnf -new -x509 -nodes -sha1 -days 3650 -key server.key > server.crt
move server.key ..\conf\ssl.key
move server.crt ..\conf\ssl.crt
| What this info useful to you? You can donate to say thanks |
Add a comment
Sign in to add a comment