2012-02-27 11:09:34 -08:00
|
|
|
# HTTPS
|
2011-01-21 13:12:35 -08:00
|
|
|
|
2015-02-24 16:15:26 -08:00
|
|
|
Stability: 2 - Stable
|
2012-03-02 15:14:03 -08:00
|
|
|
|
2015-08-13 12:14:34 -04:00
|
|
|
HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a
|
2011-01-21 13:12:35 -08:00
|
|
|
separate module.
|
|
|
|
|
2015-11-04 17:59:28 -05:00
|
|
|
## Class: https.Agent
|
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
An Agent object for HTTPS similar to [`http.Agent`][]. See [`https.request()`][]
|
2015-11-04 17:59:28 -05:00
|
|
|
for more information.
|
|
|
|
|
2012-02-27 11:09:34 -08:00
|
|
|
## Class: https.Server
|
2011-04-28 16:36:04 +09:00
|
|
|
|
|
|
|
This class is a subclass of `tls.Server` and emits events same as
|
2015-11-27 18:30:32 -05:00
|
|
|
[`http.Server`][]. See [`http.Server`][] for more information.
|
2011-04-28 16:36:04 +09:00
|
|
|
|
2013-04-30 12:43:32 +02:00
|
|
|
### server.setTimeout(msecs, callback)
|
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
See [`http.Server#setTimeout()`][].
|
2013-04-30 12:43:32 +02:00
|
|
|
|
|
|
|
### server.timeout
|
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
See [`http.Server#timeout`][].
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2014-09-24 15:41:31 -07:00
|
|
|
## https.createServer(options[, requestListener])
|
2011-04-28 16:36:04 +09:00
|
|
|
|
2011-11-25 18:26:11 -08:00
|
|
|
Returns a new HTTPS web server object. The `options` is similar to
|
2015-11-27 18:30:32 -05:00
|
|
|
[`tls.createServer()`][]. The `requestListener` is a function which is
|
2012-06-06 15:05:18 -04:00
|
|
|
automatically added to the `'request'` event.
|
2011-01-21 13:12:35 -08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
// curl -k https://localhost:8000/
|
2015-12-14 15:20:25 -08:00
|
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
2011-01-21 13:12:35 -08:00
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
const options = {
|
2011-01-21 13:12:35 -08:00
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
|
|
|
|
};
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
https.createServer(options, (req, res) => {
|
2011-01-21 13:12:35 -08:00
|
|
|
res.writeHead(200);
|
2015-12-14 15:20:25 -08:00
|
|
|
res.end('hello world\n');
|
2011-01-21 13:12:35 -08:00
|
|
|
}).listen(8000);
|
|
|
|
|
2012-05-14 01:08:23 +05:30
|
|
|
Or
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
2012-05-14 01:08:23 +05:30
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
const options = {
|
2012-05-14 01:08:23 +05:30
|
|
|
pfx: fs.readFileSync('server.pfx')
|
|
|
|
};
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
https.createServer(options, (req, res) => {
|
2012-05-14 01:08:23 +05:30
|
|
|
res.writeHead(200);
|
2015-12-14 15:20:25 -08:00
|
|
|
res.end('hello world\n');
|
2012-05-14 01:08:23 +05:30
|
|
|
}).listen(8000);
|
2011-01-21 13:12:35 -08:00
|
|
|
|
2015-11-04 17:59:28 -05:00
|
|
|
### server.close([callback])
|
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
See [`http.close()`][] for details.
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2014-09-24 15:41:31 -07:00
|
|
|
### server.listen(handle[, callback])
|
2015-11-04 17:59:28 -05:00
|
|
|
### server.listen(path[, callback])
|
|
|
|
### server.listen(port[, host][, backlog][, callback])
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
See [`http.listen()`][] for details.
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-04 17:59:28 -05:00
|
|
|
## https.get(options, callback)
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
Like [`http.get()`][] but for HTTPS.
|
2015-11-04 17:59:28 -05:00
|
|
|
|
|
|
|
`options` can be an object or a string. If `options` is a string, it is
|
2015-11-27 18:30:32 -05:00
|
|
|
automatically parsed with [`url.parse()`][].
|
2015-11-04 17:59:28 -05:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
const https = require('https');
|
2015-11-04 17:59:28 -05:00
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
https.get('https://encrypted.google.com/', (res) => {
|
|
|
|
console.log('statusCode: ', res.statusCode);
|
|
|
|
console.log('headers: ', res.headers);
|
2015-11-04 17:59:28 -05:00
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
res.on('data', (d) => {
|
2015-11-04 17:59:28 -05:00
|
|
|
process.stdout.write(d);
|
|
|
|
});
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
}).on('error', (e) => {
|
2015-11-04 17:59:28 -05:00
|
|
|
console.error(e);
|
|
|
|
});
|
|
|
|
|
|
|
|
## https.globalAgent
|
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
Global instance of [`https.Agent`][] for all HTTPS client requests.
|
2015-11-04 17:59:28 -05:00
|
|
|
|
2011-01-21 13:21:01 -08:00
|
|
|
## https.request(options, callback)
|
2011-01-21 13:12:35 -08:00
|
|
|
|
2012-08-18 14:18:02 +09:00
|
|
|
Makes a request to a secure web server.
|
|
|
|
|
|
|
|
`options` can be an object or a string. If `options` is a string, it is
|
2015-11-27 18:30:32 -05:00
|
|
|
automatically parsed with [`url.parse()`][].
|
2012-08-18 14:18:02 +09:00
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
All options from [`http.request()`][] are valid.
|
2011-01-21 13:12:35 -08:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
const https = require('https');
|
2011-01-21 13:12:35 -08:00
|
|
|
|
|
|
|
var options = {
|
2012-10-29 16:16:40 +13:00
|
|
|
hostname: 'encrypted.google.com',
|
2011-01-21 13:12:35 -08:00
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET'
|
|
|
|
};
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
var req = https.request(options, (res) => {
|
|
|
|
console.log('statusCode: ', res.statusCode);
|
|
|
|
console.log('headers: ', res.headers);
|
2011-01-21 13:12:35 -08:00
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
res.on('data', (d) => {
|
2011-01-21 13:12:35 -08:00
|
|
|
process.stdout.write(d);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
req.end();
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
req.on('error', (e) => {
|
2011-01-21 13:12:35 -08:00
|
|
|
console.error(e);
|
|
|
|
});
|
|
|
|
|
2011-03-10 13:34:35 -08:00
|
|
|
The options argument has the following options
|
|
|
|
|
2011-10-22 23:40:15 +09:00
|
|
|
- `host`: A domain name or IP address of the server to issue the request to.
|
|
|
|
Defaults to `'localhost'`.
|
2015-04-28 18:30:58 +02:00
|
|
|
- `hostname`: Alias for `host`. To support `url.parse()` `hostname` is
|
|
|
|
preferred over `host`.
|
|
|
|
- `family`: IP address family to use when resolving `host` and `hostname`.
|
|
|
|
Valid values are `4` or `6`. When unspecified, both IP v4 and v6 will be
|
|
|
|
used.
|
2011-10-22 23:40:15 +09:00
|
|
|
- `port`: Port of remote server. Defaults to 443.
|
2015-04-28 18:30:58 +02:00
|
|
|
- `localAddress`: Local interface to bind for network connections.
|
|
|
|
- `socketPath`: Unix Domain Socket (use one of host:port or socketPath).
|
2011-10-22 23:40:15 +09:00
|
|
|
- `method`: A string specifying the HTTP request method. Defaults to `'GET'`.
|
|
|
|
- `path`: Request path. Defaults to `'/'`. Should include query string if any.
|
2015-04-28 18:30:58 +02:00
|
|
|
E.G. `'/index.html?page=12'`. An exception is thrown when the request path
|
|
|
|
contains illegal characters. Currently, only spaces are rejected but that
|
|
|
|
may change in the future.
|
2011-10-22 23:40:15 +09:00
|
|
|
- `headers`: An object containing request headers.
|
|
|
|
- `auth`: Basic authentication i.e. `'user:password'` to compute an
|
|
|
|
Authorization header.
|
2015-11-27 18:30:32 -05:00
|
|
|
- `agent`: Controls [`Agent`][] behavior. When an Agent is used request will
|
2012-06-06 15:05:18 -04:00
|
|
|
default to `Connection: keep-alive`. Possible values:
|
2015-11-27 18:30:32 -05:00
|
|
|
- `undefined` (default): use [`globalAgent`][] for this host and port.
|
2011-10-22 23:40:15 +09:00
|
|
|
- `Agent` object: explicitly use the passed in `Agent`.
|
|
|
|
- `false`: opts out of connection pooling with an Agent, defaults request to
|
|
|
|
`Connection: close`.
|
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
The following options from [`tls.connect()`][] can also be specified. However, a
|
|
|
|
[`globalAgent`][] silently ignores these.
|
2011-10-22 23:40:15 +09:00
|
|
|
|
2012-05-14 01:08:23 +05:30
|
|
|
- `pfx`: Certificate, Private key and CA certificates to use for SSL. Default `null`.
|
2011-10-22 23:40:15 +09:00
|
|
|
- `key`: Private key to use for SSL. Default `null`.
|
2012-05-14 01:08:23 +05:30
|
|
|
- `passphrase`: A string of passphrase for the private key or pfx. Default `null`.
|
2011-10-22 23:40:15 +09:00
|
|
|
- `cert`: Public x509 certificate to use. Default `null`.
|
2015-12-09 20:20:32 +01:00
|
|
|
- `ca`: A string, `Buffer` or array of strings or `Buffer`s of trusted
|
|
|
|
certificates in PEM format. If this is omitted several well known "root"
|
|
|
|
CAs will be used, like VeriSign. These are used to authorize connections.
|
2012-02-25 23:17:05 +09:00
|
|
|
- `ciphers`: A string describing the ciphers to use or exclude. Consult
|
2015-12-02 11:17:19 -05:00
|
|
|
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER_LIST_FORMAT> for
|
2012-02-25 23:17:05 +09:00
|
|
|
details on the format.
|
2011-12-07 22:47:06 +09:00
|
|
|
- `rejectUnauthorized`: If `true`, the server certificate is verified against
|
|
|
|
the list of supplied CAs. An `'error'` event is emitted if verification
|
|
|
|
fails. Verification happens at the connection level, *before* the HTTP
|
2012-08-30 15:14:37 +02:00
|
|
|
request is sent. Default `true`.
|
2013-05-15 13:16:09 -06:00
|
|
|
- `secureProtocol`: The SSL method to use, e.g. `SSLv3_method` to force
|
|
|
|
SSL version 3. The possible values depend on your installation of
|
2015-11-27 18:30:32 -05:00
|
|
|
OpenSSL and are defined in the constant [`SSL_METHODS`][].
|
2011-03-10 13:34:35 -08:00
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
In order to specify these options, use a custom [`Agent`][].
|
2011-09-14 20:17:30 +09:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
var options = {
|
2012-10-29 16:16:40 +13:00
|
|
|
hostname: 'encrypted.google.com',
|
2011-09-14 20:17:30 +09:00
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET',
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
2011-09-14 23:48:42 +09:00
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
|
2011-09-14 20:17:30 +09:00
|
|
|
};
|
|
|
|
options.agent = new https.Agent(options);
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
var req = https.request(options, (res) => {
|
2011-09-14 20:17:30 +09:00
|
|
|
...
|
|
|
|
}
|
|
|
|
|
2015-11-30 10:40:02 -08:00
|
|
|
Alternatively, opt out of connection pooling by not using an `Agent`.
|
2011-09-14 20:17:30 +09:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
var options = {
|
2012-10-29 16:16:40 +13:00
|
|
|
hostname: 'encrypted.google.com',
|
2011-09-14 20:17:30 +09:00
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET',
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
2011-09-14 23:48:42 +09:00
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),
|
2011-09-14 20:17:30 +09:00
|
|
|
agent: false
|
|
|
|
};
|
|
|
|
|
2015-12-14 15:20:25 -08:00
|
|
|
var req = https.request(options, (res) => {
|
2011-09-14 20:17:30 +09:00
|
|
|
...
|
|
|
|
}
|
2015-11-13 19:21:49 -08:00
|
|
|
|
2015-11-27 18:30:32 -05:00
|
|
|
[`Agent`]: #https_class_https_agent
|
|
|
|
[`globalAgent`]: #https_https_globalagent
|
|
|
|
[`http.Agent`]: http.html#http_class_http_agent
|
|
|
|
[`http.close()`]: http.html#http_server_close_callback
|
|
|
|
[`http.get()`]: http.html#http_http_get_options_callback
|
|
|
|
[`http.listen()`]: http.html#http_server_listen_port_hostname_backlog_callback
|
|
|
|
[`http.request()`]: http.html#http_http_request_options_callback
|
|
|
|
[`http.Server#setTimeout()`]: http.html#http_server_settimeout_msecs_callback
|
|
|
|
[`http.Server#timeout`]: http.html#http_server_timeout
|
|
|
|
[`http.Server`]: http.html#http_class_http_server
|
|
|
|
[`https.Agent`]: #https_class_https_agent
|
|
|
|
[`https.request()`]: #https_https_request_options_callback
|
2015-12-02 11:17:19 -05:00
|
|
|
[`SSL_METHODS`]: https://www.openssl.org/docs/ssl/ssl.html#DEALING_WITH_PROTOCOL_METHODS
|
2015-11-27 18:30:32 -05:00
|
|
|
[`tls.connect()`]: tls.html#tls_tls_connect_options_callback
|
|
|
|
[`tls.createServer()`]: tls.html#tls_tls_createserver_options_secureconnectionlistener
|
|
|
|
[`url.parse()`]: url.html#url_url_parse_urlstr_parsequerystring_slashesdenotehost
|