2012-02-27 20:09:34 +01:00
|
|
|
# HTTPS
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2015-02-25 01:15:26 +01:00
|
|
|
Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
2015-08-13 18:14:34 +02:00
|
|
|
HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a
|
2011-01-21 22:12:35 +01:00
|
|
|
separate module.
|
|
|
|
|
2015-11-04 23:59:28 +01:00
|
|
|
## Class: https.Agent
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.4.5
|
|
|
|
-->
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
An Agent object for HTTPS similar to [`http.Agent`][]. See [`https.request()`][]
|
2015-11-04 23:59:28 +01:00
|
|
|
for more information.
|
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## Class: https.Server
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.4
|
|
|
|
-->
|
2011-04-28 09:36:04 +02:00
|
|
|
|
|
|
|
This class is a subclass of `tls.Server` and emits events same as
|
2015-11-28 00:30:32 +01:00
|
|
|
[`http.Server`][]. See [`http.Server`][] for more information.
|
2011-04-28 09:36:04 +02:00
|
|
|
|
2013-04-30 12:43:32 +02:00
|
|
|
### server.setTimeout(msecs, callback)
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.2
|
|
|
|
-->
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.Server#setTimeout()`][].
|
2013-04-30 12:43:32 +02:00
|
|
|
|
|
|
|
### server.timeout
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.2
|
|
|
|
-->
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.Server#timeout`][].
|
2013-04-30 12:43:32 +02:00
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
## https.createServer(options[, requestListener])
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.4
|
|
|
|
-->
|
2011-04-28 09:36:04 +02:00
|
|
|
|
2011-11-26 03:26:11 +01:00
|
|
|
Returns a new HTTPS web server object. The `options` is similar to
|
2015-11-28 00:30:32 +01:00
|
|
|
[`tls.createServer()`][]. The `requestListener` is a function which is
|
2012-06-06 21:05:18 +02:00
|
|
|
automatically added to the `'request'` event.
|
2011-01-21 22:12:35 +01:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
// curl -k https://localhost:8000/
|
|
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
|
|
|
|
};
|
|
|
|
|
|
|
|
https.createServer(options, (req, res) => {
|
|
|
|
res.writeHead(200);
|
|
|
|
res.end('hello world\n');
|
|
|
|
}).listen(8000);
|
|
|
|
```
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2012-05-13 21:38:23 +02:00
|
|
|
Or
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
const options = {
|
|
|
|
pfx: fs.readFileSync('server.pfx')
|
|
|
|
};
|
2012-05-13 21:38:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
https.createServer(options, (req, res) => {
|
|
|
|
res.writeHead(200);
|
|
|
|
res.end('hello world\n');
|
|
|
|
}).listen(8000);
|
|
|
|
```
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2015-11-04 23:59:28 +01:00
|
|
|
### server.close([callback])
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.90
|
|
|
|
-->
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.close()`][] for details.
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
### server.listen(handle[, callback])
|
2015-11-04 23:59:28 +01:00
|
|
|
### server.listen(path[, callback])
|
|
|
|
### server.listen(port[, host][, backlog][, callback])
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
See [`http.listen()`][] for details.
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-04 23:59:28 +01:00
|
|
|
## https.get(options, callback)
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.6
|
|
|
|
-->
|
2012-10-08 19:10:29 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Like [`http.get()`][] but for HTTPS.
|
2015-11-04 23:59:28 +01:00
|
|
|
|
|
|
|
`options` can be an object or a string. If `options` is a string, it is
|
2015-11-28 00:30:32 +01:00
|
|
|
automatically parsed with [`url.parse()`][].
|
2015-11-04 23:59:28 +01:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const https = require('https');
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
https.get('https://encrypted.google.com/', (res) => {
|
|
|
|
console.log('statusCode: ', res.statusCode);
|
|
|
|
console.log('headers: ', res.headers);
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
res.on('data', (d) => {
|
|
|
|
process.stdout.write(d);
|
|
|
|
});
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
}).on('error', (e) => {
|
|
|
|
console.error(e);
|
|
|
|
});
|
|
|
|
```
|
2015-11-04 23:59:28 +01:00
|
|
|
|
|
|
|
## https.globalAgent
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.9
|
|
|
|
-->
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Global instance of [`https.Agent`][] for all HTTPS client requests.
|
2015-11-04 23:59:28 +01:00
|
|
|
|
2011-01-21 22:21:01 +01:00
|
|
|
## https.request(options, callback)
|
2016-06-23 21:51:12 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.6
|
|
|
|
-->
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2012-08-18 07:18:02 +02: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-28 00:30:32 +01:00
|
|
|
automatically parsed with [`url.parse()`][].
|
2012-08-18 07:18:02 +02:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
All options from [`http.request()`][] are valid.
|
2011-01-21 22:12:35 +01:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const https = require('https');
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
var options = {
|
|
|
|
hostname: 'encrypted.google.com',
|
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET'
|
|
|
|
};
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
var req = https.request(options, (res) => {
|
|
|
|
console.log('statusCode: ', res.statusCode);
|
|
|
|
console.log('headers: ', res.headers);
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
res.on('data', (d) => {
|
|
|
|
process.stdout.write(d);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
req.end();
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
req.on('error', (e) => {
|
|
|
|
console.error(e);
|
|
|
|
});
|
|
|
|
```
|
2011-01-21 22:12:35 +01:00
|
|
|
|
2011-03-10 22:34:35 +01:00
|
|
|
The options argument has the following options
|
|
|
|
|
2011-10-22 16:40:15 +02: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 16:40:15 +02: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 16:40:15 +02: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 16:40:15 +02:00
|
|
|
- `headers`: An object containing request headers.
|
|
|
|
- `auth`: Basic authentication i.e. `'user:password'` to compute an
|
|
|
|
Authorization header.
|
2015-11-28 00:30:32 +01:00
|
|
|
- `agent`: Controls [`Agent`][] behavior. When an Agent is used request will
|
2012-06-06 21:05:18 +02:00
|
|
|
default to `Connection: keep-alive`. Possible values:
|
2015-11-28 00:30:32 +01:00
|
|
|
- `undefined` (default): use [`globalAgent`][] for this host and port.
|
2011-10-22 16:40:15 +02: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-28 00:30:32 +01:00
|
|
|
The following options from [`tls.connect()`][] can also be specified. However, a
|
|
|
|
[`globalAgent`][] silently ignores these.
|
2011-10-22 16:40:15 +02:00
|
|
|
|
2012-05-13 21:38:23 +02:00
|
|
|
- `pfx`: Certificate, Private key and CA certificates to use for SSL. Default `null`.
|
2011-10-22 16:40:15 +02:00
|
|
|
- `key`: Private key to use for SSL. Default `null`.
|
2012-05-13 21:38:23 +02:00
|
|
|
- `passphrase`: A string of passphrase for the private key or pfx. Default `null`.
|
2011-10-22 16:40:15 +02:00
|
|
|
- `cert`: Public x509 certificate to use. Default `null`.
|
2016-01-31 14:46:39 +01:00
|
|
|
- `ca`: A string, [`Buffer`][] or array of strings or [`Buffer`][]s of trusted
|
2015-12-09 20:20:32 +01:00
|
|
|
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 15:17:05 +01:00
|
|
|
- `ciphers`: A string describing the ciphers to use or exclude. Consult
|
2016-05-17 19:52:54 +02:00
|
|
|
<https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT> for
|
2012-02-25 15:17:05 +01:00
|
|
|
details on the format.
|
2011-12-07 14:47:06 +01: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 21:16:09 +02: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-28 00:30:32 +01:00
|
|
|
OpenSSL and are defined in the constant [`SSL_METHODS`][].
|
2016-01-17 15:12:04 +01:00
|
|
|
- `servername`: Servername for SNI (Server Name Indication) TLS extension.
|
2011-03-10 22:34:35 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
In order to specify these options, use a custom [`Agent`][].
|
2011-09-14 13:17:30 +02:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
var options = {
|
|
|
|
hostname: 'encrypted.google.com',
|
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET',
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
|
|
|
|
};
|
|
|
|
options.agent = new https.Agent(options);
|
|
|
|
|
|
|
|
var req = https.request(options, (res) => {
|
|
|
|
...
|
2016-07-15 07:41:29 +02:00
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2011-09-14 13:17:30 +02:00
|
|
|
|
2015-11-30 19:40:02 +01:00
|
|
|
Alternatively, opt out of connection pooling by not using an `Agent`.
|
2011-09-14 13:17:30 +02:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
var options = {
|
|
|
|
hostname: 'encrypted.google.com',
|
|
|
|
port: 443,
|
|
|
|
path: '/',
|
|
|
|
method: 'GET',
|
|
|
|
key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
|
|
|
|
cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),
|
|
|
|
agent: false
|
|
|
|
};
|
|
|
|
|
|
|
|
var req = https.request(options, (res) => {
|
|
|
|
...
|
2016-07-15 07:41:29 +02:00
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-11-14 04:21:49 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
[`Agent`]: #https_class_https_agent
|
2016-01-31 14:46:39 +01:00
|
|
|
[`Buffer`]: buffer.html#buffer_buffer
|
2015-11-28 00:30:32 +01:00
|
|
|
[`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
|
2016-05-17 19:52:54 +02:00
|
|
|
[`SSL_METHODS`]: https://www.openssl.org/docs/ssl/ssl.html#DEALING-WITH-PROTOCOL-METHODS
|
2015-11-28 00:30:32 +01:00
|
|
|
[`tls.connect()`]: tls.html#tls_tls_connect_options_callback
|
|
|
|
[`tls.createServer()`]: tls.html#tls_tls_createserver_options_secureconnectionlistener
|
2016-06-23 21:54:34 +02:00
|
|
|
[`url.parse()`]: url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost
|