how to generate keys: [
www.apachelounge.com]
use batch:
-------------------
rem RUN with ADMIN rights and run from EasyPHP\apache\conf folder
set OPENSSL_CONF=f:\EasyPHP\apache\conf\openssl.cnf
..\bin\openssl.exe genrsa -des3 -out server.key 1024
..\bin\openssl.exe rsa -in server.key -out server.pem
..\bin\openssl.exe req -new -key server.key -out server.csr
..\bin\openssl.exe x509 -req -days 30 -in server.csr -signkey server.key -out server.crt
---------------------
but in easyphp when I uncommented line in httpd.conf:
LoadModule ssl_module modules/mod_ssl.so
I have following error:
"Syntax error on line 174... Cannot load mod_ssl.so"
I think easyPHP 12.1 compiled wrong with openssl libs and doesn't support this functions.
I hope developers knows more about this.