Is it possible for the wix iis extension to configure a new website to use
SSL using a certificate that is already installed on the system?

Most of samples I've been able to locate assume I am installing the
certificate that I will configure to be used for the newly created website.

 <Component Id="MyWebsite" Guid="{DF67666D-7E8A-4995-B662-8D4527777FB1}"
KeyPath="yes">
    <iis:Certificate
        Id="theCert"
        Name="mydomain.org"
        StoreLocation="localMachine"
        StoreName="personal" />

        <!-- ERROR! ^^^^^^^^This requires BinaryKey or CertificatePath,
        but I'm not installing a cert, I want to use a cert that is already
installed.
        -->

    <iis:WebAppPool
        Id="MyAppPool"
        Name="$(var.MySiteName)"
        ManagedPipelineMode="Integrated"
        ManagedRuntimeVersion="$(var.ManagedRuntimeVersion)" />

    <iis:WebSite Id="MyWebsite" Description="$(var.MySiteName)"
Directory="MyDIR" AutoStart="yes" SiteId="1234" StartOnInstall="yes">
      <iis:WebApplication Id="MyApp" Name="$(var.MySiteName)"
WebAppPool="MyAppPool"/>
      <iis:WebAddress Id="MyAllUnassigned" IP="*" Port="443" Secure="yes"
Header="$(var.MySiteName)[DNS_SUFFIX]"/>
      <iis:CertificateRef = Id="theCert"/>
    </iis:WebSite>
</Component>

-- 
Tony
------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to