How to Setup Windows HTTPS?

Hello,
Say you have working HTTPS in either IIS and/or Apache for Windows. What is the best method to get HTTPS working for Urbackup?

IIS would be optimal, however Apache would suffice.

All,
Finally just got this working and wanted to share:

  1. Get Apache for Windows (I used Apache Haus) - Link: https://www.apachehaus.com/cgi-bin/download.plx

  2. Get the fastcgi module (Again, I used Apache Haus) - Link: https://www.apachehaus.net/modules/mod_fastcgi/

  3. Copy the file mod_fastcgi.so into C:\Apache24\modules.

  4. Setup your SSL configuration and verify that it is working.

  5. Use Windows mklink utility to make a symbolic link from your server’s webroot:
    Example:
    C:\Apache24\bin>mklink /D C:\Apache24\htdocs\login “C:\Program Files\UrBackupSer
    ver\urbackup\www”

6… Add the following into your http.conf file on it’s appropriate line:
(Replacing the FastCgiEnternalServer location with your location of course)

LoadModule fastcgi_module modules/mod_fastcgi.so

FastCgiExternalServer “C:/Apache24/htdocs/login/x” -host 127.0.0.1:55413

Options Indexes FollowSymLinks ExecCGI

DirectoryIndex index.html index.htm


**Does anyone know how to get this working with IIS ?

Thank for your shared.

Please guide more detail at step 4 “Setup your SSL configuration and verify that it is working.” I’m stuck at this step. Sorry for this, I’m IT newbie