hi I want to have a https protocol in my website how to do this one?

link|improve this question
Need to know what web server you're running – Mark Henderson Jun 17 '10 at 8:59
4  
@Farseeker, after such question I would be surprised to hear that this guy has a server. – Andrejs Cainikovs Jun 17 '10 at 9:06
@crisgomez, just call the support of the hosting company. – Andrejs Cainikovs Jun 17 '10 at 9:07
feedback

migrated from stackoverflow.com Jun 17 '10 at 8:12

This question came from our site for professional and enthusiast programmers.

2 Answers

As @Ira Rainey said, you need to have an SSL certificate installed in your server. Then you need to configure your web server to enable the HTTPS binding and to specify the certificate to use. Configuration of the server depends on whether you are using Apache or IIS. Both are fairly well documented on the web and searching for "configure Apache HTTPS" or "configure IIS HTTPS" will return more than enough configuration.

Note that usually SSL certificates cost some money. This is because the SSL certificate is issued by a well-known authority (usually a trusted company whose root certificate is distributed by the major OS vendors preinstalled) which needs to maintain the PKI infrastructure. However, there's a small company called StartCOM, that is issuing free basic SSL certificates (with the hope to upsell you later to extended validation certs), whose root certificate is preinstalled on Windows, OS X and some Linux distributions.

link|improve this answer
feedback

You need to install an SSL certificate to the server to authenticate the domain name.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown