tags:

views:

22

answers:

1

Hi,

Is it possible to test a website under HTTPS during the development phase, i.e. without actually purchasing an SSL certificate?

Thanks, Mike

+2  A: 

Yes, you can either use self-signed certificates or create your own CA. OpenSSL comes with a test script for doing this (CA.pl, which even has its own man page). You would then have to import that test CA certificate into your test clients.

Bruno
thanks for your help!
Mark Blades
If you need help generating a self-signed certificate, use one of these tutorials: http://www.sslshopper.com/article-how-to-create-a-self-signed-certificate.html You could also get a free SSL certificate from a CA like StartCom.
Robert