Skip to content

Commit c676129

Browse files
him2him2MylesBorins
authored andcommitted
doc: update http URLs to https in doc/api
PR-URL: #17263 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]>
1 parent c345a10 commit c676129

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

doc/api/_toc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@
5555
<div class="line"></div>
5656

5757
* [GitHub Repo & Issue Tracker](https://github.com/nodejs/node)
58-
* [Mailing List](http://groups.google.com/group/nodejs)
58+
* [Mailing List](https://groups.google.com/group/nodejs)

doc/api/crypto.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2396,7 +2396,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
23962396
[`verify.verify()`]: #crypto_verify_verify_object_signature_signatureformat
23972397
[Caveats]: #crypto_support_for_weak_or_compromised_algorithms
23982398
[Crypto Constants]: #crypto_crypto_constants_1
2399-
[HTML5's `keygen` element]: http://www.w3.org/TR/html5/forms.html#the-keygen-element
2399+
[HTML5's `keygen` element]: https://www.w3.org/TR/html5/forms.html#the-keygen-element
24002400
[NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
24012401
[NIST SP 800-132]: http://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf
24022402
[Nonce-Disrespecting Adversaries]: https://github.com/nonce-disrespect/nonce-disrespect

doc/api/tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ A key is *required* for ciphers that make use of certificates. Either `key` or
10131013

10141014
If the 'ca' option is not given, then Node.js will use the default
10151015
publicly trusted list of CAs as given in
1016-
<http://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt>.
1016+
<https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt>.
10171017

10181018

10191019
## tls.createServer([options][, secureConnectionListener])

doc/api/zlib.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ http.createServer((request, response) => {
110110
}
111111

112112
// Note: This is not a conformant accept-encoding parser.
113-
// See http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
113+
// See https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.3
114114
if (/\bdeflate\b/.test(acceptEncoding)) {
115115
response.writeHead(200, { 'Content-Encoding': 'deflate' });
116116
raw.pipe(zlib.createDeflate()).pipe(response);
@@ -235,7 +235,7 @@ All of the constants defined in `zlib.h` are also defined on
235235
`require('zlib').constants`. In the normal course of operations, it will not be
236236
necessary to use these constants. They are documented so that their presence is
237237
not surprising. This section is taken almost directly from the
238-
[zlib documentation][]. See <http://zlib.net/manual.html#Constants> for more
238+
[zlib documentation][]. See <https://zlib.net/manual.html#Constants> for more
239239
details.
240240

241241
*Note*: Previously, the constants were available directly from
@@ -313,7 +313,7 @@ ignored by the decompression classes.
313313
* `info` {boolean} (If `true`, returns an object with `buffer` and `engine`)
314314

315315
See the description of `deflateInit2` and `inflateInit2` at
316-
<http://zlib.net/manual.html#Advanced> for more information on these.
316+
<https://zlib.net/manual.html#Advanced> for more information on these.
317317

318318
## Class: zlib.Deflate
319319
<!-- YAML
@@ -723,4 +723,4 @@ Decompress a chunk of data with [Unzip][].
723723
[Unzip]: #zlib_class_zlib_unzip
724724
[`UV_THREADPOOL_SIZE`]: cli.html#cli_uv_threadpool_size_size
725725
[options]: #zlib_class_options
726-
[zlib documentation]: http://zlib.net/manual.html#Constants
726+
[zlib documentation]: https://zlib.net/manual.html#Constants

0 commit comments

Comments
 (0)