File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed
src/BenchmarksApps/TLS/HttpSys Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,25 @@ scenarios:
49
49
serverScheme : https
50
50
51
51
mTls-handshakes-httpsys :
52
+ application :
53
+ job : httpSysServer
54
+ variables :
55
+ mTLS : true
56
+ certValidationConsoleEnabled : false # only for debug purposes
57
+ options :
58
+ beforeScript : " .\s etup-httpsys.ps1"
59
+ afterScript : " .\s hutdown-httpsys.ps1"
60
+ load :
61
+ job : httpclient
62
+ variables :
63
+ path : /hello-world
64
+ presetHeaders : connectionclose
65
+ connections : 32
66
+ serverScheme : https
67
+ certPath : https://raw.githubusercontent.com/aspnet/Benchmarks/refs/heads/main/src/BenchmarksApps/TLS/HttpSys/testCert.pfx
68
+ certPwd : testPassword
69
+
70
+ tls-renegotiation-httpsys :
52
71
application :
53
72
job : httpSysServer
54
73
variables :
Original file line number Diff line number Diff line change 6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
</PropertyGroup >
8
8
9
+ <ItemGroup >
10
+ <None Update =" scripts\setup-httpsys.ps1" >
11
+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
12
+ </None >
13
+ <None Update =" testCert.pfx" >
14
+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
15
+ </None >
16
+ </ItemGroup >
17
+
9
18
</Project >
Original file line number Diff line number Diff line change
1
+ Write-Output " hello world setup"
Original file line number Diff line number Diff line change
1
+ Write-Output " hello world shutdown"
You can’t perform that action at this time.
0 commit comments