File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,9 @@ parameters:
108
108
- displayName : " HttpSys Windows: mTLS Handshakes"
109
109
arguments : --scenario mTls-handshakes-httpsys $(tlsJobs) --property scenario=HttpSysMutualTLSHandshakes --application.options.requiredOperatingSystem windows
110
110
111
+ - displayName : " HttpSys Windows: TLS Renegotiation"
112
+ arguments : --scenario tls-renegotiation-httpsys $(tlsJobs) --property scenario=HttpSysTLSRenegotiation --application.options.requiredOperatingSystem windows
113
+
111
114
- displayName : " Kestrel Linux: TLS Handshakes"
112
115
arguments : --scenario tls-handshakes-kestrel $(tlsJobs) --property scenario=KestrelTLSHandshakes --application.options.requiredOperatingSystem linux
113
116
Original file line number Diff line number Diff line change 15
15
project : src/BenchmarksApps/TLS/HttpSys/HttpSys.csproj
16
16
readyStateText : Application started.
17
17
variables :
18
- mTLS : false
18
+ mTLS : false # enables settings on http.sys to negotiate client cert on connections
19
+ tlsRenegotiation : false # enables client cert validation
19
20
certValidationConsoleEnabled : false
20
- tlsRenegotiation : false
21
21
httpSysLogs : false
22
22
statsEnabled : false
23
23
arguments : " --urls https://{{serverAddress}}:{{serverPort}} --mTLS {{mTLS}} --certValidationConsoleEnabled {{certValidationConsoleEnabled}} --statsEnabled {{statsEnabled}} --tlsRenegotiation {{tlsRenegotiation}} --httpSysLogs {{httpSysLogs}}"
@@ -54,8 +54,8 @@ scenarios:
54
54
application :
55
55
job : httpSysServer
56
56
variables :
57
- mTLS : true
58
- tlsRenegotiation : true
57
+ mTLS : true # enables settings on http.sys to negotiate client cert on connections
58
+ tlsRenegotiation : true # enables client cert validation
59
59
httpSysLogs : false # only for debug purposes
60
60
certValidationConsoleEnabled : false # only for debug purposes
61
61
load :
@@ -72,7 +72,9 @@ scenarios:
72
72
application :
73
73
job : httpSysServer
74
74
variables :
75
- mTLS : true
75
+ mTLS : false
76
+ tlsRenegotiation : true
77
+ httpSysLogs : false # only for debug purposes
76
78
certValidationConsoleEnabled : false # only for debug purposes
77
79
load :
78
80
job : httpclient
You can’t perform that action at this time.
0 commit comments