File tree 1 file changed +4
-3
lines changed
src/Servers/Kestrel/Core/src/Internal
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -345,9 +345,9 @@ public override int GetHashCode() => HashCode.Combine(
345
345
}
346
346
347
347
// "CertificateName": {
348
- // "Path": "testCert.pfx",
349
- // "KeyPath": "",
350
- // "ChainPath": "",
348
+ // "Path": "testCert.pem/ pfx",
349
+ // "KeyPath": "key.pem ",
350
+ // "ChainPath": "chain.pem ",
351
351
// "Password": "testPassword"
352
352
// }
353
353
internal class CertificateConfig
@@ -359,6 +359,7 @@ public CertificateConfig(IConfigurationSection configSection)
359
359
// Bind explictly to preserve linkability
360
360
Path = configSection [ nameof ( Path ) ] ;
361
361
KeyPath = configSection [ nameof ( KeyPath ) ] ;
362
+ ChainPath = configSection [ nameof ( ChainPath ) ] ;
362
363
Password = configSection [ nameof ( Password ) ] ;
363
364
Subject = configSection [ nameof ( Subject ) ] ;
364
365
Store = configSection [ nameof ( Store ) ] ;
You can’t perform that action at this time.
0 commit comments