Mark Blades
Mark Blades

Reputation: 397

SSL certificate testing

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

Thanks, Mike

Upvotes: 3

Views: 433

Answers (3)

Neeraj Gahlawat
Neeraj Gahlawat

Reputation: 1679

openssl x509 -text -noout

You can download and config openssl. Generate self sign cert. Configure in your server. check your cert details using above cmd:-

Upvotes: 0

Andrew Chaa
Andrew Chaa

Reputation: 6358

For windows developer, If you use IIS 7, you can use self-signed certificates easily. Try ScottGu's blog. If your dev environment is IIS 6, then you can use IIS 6.0 resource kit with this post.

Upvotes: 1

Bruno
Bruno

Reputation: 122599

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.

Upvotes: 4

Related Questions