Enable SSL in WAMP server
How to enable SSl on Wamp Server(apache2) - HTTPS Configuration In this article, I will show how to Configure/Enable SSL in Wamp Server.I have installed wampserver with apache 2.2.12 and php 5.3.5. I have to configure the Open SSL server. How to Setup HTTPS SSL on WAMP Server for apache 2.2 1. Install WAMPServer 2. Open Control Panel 3. Click System >> Select Advanced System Setting >> Select Environment Variables. 4.Create new system variable OPENSSL_CONF: Value: C:\wamp\bin\apache\apache2.2.12\conf\openssl.cnf 5. Create a SSL Certificate and Key for the Web Server Open command prompt and Run the following commands: > cd wamp\bin\apache\apache2.2.12\bin > openssl genrsa -des3 -out server.key 1024 > copy server.key server.key.org > openssl rsa -in server.key.org -out server.key > openssl req -new -x509 -nodes -sha1 -days 365 -key server.key -out server.crt -config C:\wamp\bin\apache\apache2.2.12\conf\openssl.cnf >openssl req -new -ne...