blob: 9b66776bf3d808ee12d1837761c1078df1aac075 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<element name="SniSslCertificate">
<annotation>
<documentation>
Associates an SNI SSL certificate with HTTP.SYS.
</documentation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Component" />
</appinfo>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<any namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
elements at this point in the schema.
</documentation>
</annotation>
</any>
</choice>
<attribute name="Id" type="xs:string">
<annotation>
<documentation>
Unique ID of this SNI SSL.
If this attribute is not specified, an identifier will be generated automatically.
</documentation>
</annotation>
</attribute>
<attribute name="AppId" type="xs:string">
<annotation>
<documentation>A GUID used ot identify the SNI SSL binding.</documentation>
</annotation>
</attribute>
<attribute name="HandleExisting">
<annotation>
<documentation>
Rights for this ACE. Default is "all".
</documentation>
</annotation>
<simpleType>
<restriction base="xs:NMTOKEN">
<enumeration value="replace" />
<enumeration value="ignore" />
<enumeration value="fail" />
</restriction>
</simpleType>
</attribute>
<attribute name="Host" type="xs:string" use="required">
<annotation>
<documentation>Host of the URL to bind with the SNI SSL certificate.</documentation>
</annotation>
</attribute>
<attribute name="Port" type="xs:string" use="required">
<annotation>
<documentation>Host of the URL to bind with the SNI SSL certificate.</documentation>
</annotation>
</attribute>
<attribute name="Store" type="xs:string">
<annotation>
<documentation>Certificate store containing the SNI SSL certificate.</documentation>
</annotation>
</attribute>
<attribute name="Thumbprint" type="xs:string" use="required">
<annotation>
<documentation>Thumbprint of the SNI SSL certificate.</documentation>
</annotation>
</attribute>
<anyAttribute namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
attributes at this point in the schema.
</documentation>
</annotation>
</anyAttribute>
</complexType>
</element>
|