local https web site

  • Thread starter Thread starter CSharper
  • Start date Start date
C

CSharper

I was not sure where to ask, so I thought I ask here since I get all
my answers here than anywhere.

How do I go about creating https web site on my local machine?



Thanks,
 
CSharper said:
I was not sure where to ask, so I thought I ask here since I get all
my answers here than anywhere.

How do I go about creating https web site on my local machine?

Run a web server on your local machine (see, for example,
http://httpd.apache.org/). For HTTPS you'll also need a security
certificate ($$$, unless you're willing to put up with browser warnings).
 
CSharper said:
How do I go about creating https web site on my local machine?

You need to buy a certificate, or generate it yourself if it is only for
local use and you don't need anyone else to recognize your site.
Then you install the certificate in IIS, which is done in a different
way depending on the version you are using, and configure a site to use SSL.
This link should help you:

http://technet.microsoft.com/en-us/library/cc771438(WS.10).aspx

If this is not enough, you will probably get better answers by asking in
an IIS forum. This is not really a C# question, even if you argue that you
can serve over https a web site that uses C# for its code-behind.
 
Back
Top