diff options
author | Bob Arnson <bob@firegiant.com> | 2025-02-17 22:30:31 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2025-03-03 12:52:51 -0500 |
commit | ba7fd5837ea149b2e319cc577fad27ce1162a064 (patch) | |
tree | 5b5940db018333c607147593bb79a547a4836d38 /src/ext/Http/test/WixToolsetTest.Http/TestData/SniSsl/PackageComponents.wxs | |
parent | b710f6e40239f12d1b7ff670c8580a550f0bb557 (diff) | |
download | wix-ba7fd5837ea149b2e319cc577fad27ce1162a064.tar.gz wix-ba7fd5837ea149b2e319cc577fad27ce1162a064.tar.bz2 wix-ba7fd5837ea149b2e319cc577fad27ce1162a064.zip |
Support non-SNI SSL certificates in Http extension
Implements https://github.com/wixtoolset/issues/issues/7622
Diffstat (limited to 'src/ext/Http/test/WixToolsetTest.Http/TestData/SniSsl/PackageComponents.wxs')
-rw-r--r-- | src/ext/Http/test/WixToolsetTest.Http/TestData/SniSsl/PackageComponents.wxs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/ext/Http/test/WixToolsetTest.Http/TestData/SniSsl/PackageComponents.wxs b/src/ext/Http/test/WixToolsetTest.Http/TestData/SniSsl/PackageComponents.wxs deleted file mode 100644 index f0aae485..00000000 --- a/src/ext/Http/test/WixToolsetTest.Http/TestData/SniSsl/PackageComponents.wxs +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" | ||
3 | xmlns:http="http://wixtoolset.org/schemas/v4/wxs/http"> | ||
4 | <Fragment> | ||
5 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | ||
6 | <Component> | ||
7 | <File Source="example.txt" /> | ||
8 | <http:SniSslCertificate Host="example.com" Port="8080" Thumbprint="[SOME_THUMBPRINT]" HandleExisting="fail" /> | ||
9 | </Component> | ||
10 | </ComponentGroup> | ||
11 | </Fragment> | ||
12 | </Wix> | ||