method Server.prototype.addContext
Jump to headingServer.prototype.addContext(hostname: string,context: SecureContextOptions,): voidThe server.addContext() method adds a secure context that will be used if
the client request's SNI name matches the supplied hostname (or wildcard).
When there are multiple matching contexts, the most recently added one is used.
Parameters Jump to heading
Jump to headinghostname: stringA SNI host name or wildcard (e.g. '*')
Jump to headingcontext: SecureContextOptionsAn object containing any of the possible properties from the createSecureContext options arguments (e.g. key, cert, ca, etc), or a TLS context object created
with createSecureContext itself.
Return Type Jump to heading
void