Skip to content

Commit 2738357

Browse files
committed
Update to use rfc-editor.org URLs throughout.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1924775 13f79535-47bb-0310-9956-ffa450edef68
1 parent 0427048 commit 2738357

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

docs/manual/mod/mod_autht_jwt.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<p>This module provides token parsing front-ends such as
3333
<module>mod_auth_bearer</module> the ability to authenticate users
3434
by verifying a JWT token as described in
35-
<a href="http://www.ietf.org/rfc/rfc7519.txt">RFC 7519</a>.</p>
35+
<a href="https://www.rfc-editor.org/rfc/rfc7519">RFC 7519</a>.</p>
3636

3737
<p>A JWT token is read from the <var>Authorization</var> header
3838
with an <var>auth-scheme</var> of <var>Bearer</var>.</p>

docs/manual/mod/mod_cache.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
variable.</note>
4040

4141
<p><module>mod_cache</module> implements an <a
42-
href="http://www.ietf.org/rfc/rfc2616.txt">RFC 2616</a> compliant
42+
href="https://www.rfc-editor.org/rfc/rfc2616">RFC 2616</a> compliant
4343
<strong>HTTP content caching filter</strong>, with support for the caching
4444
of content negotiated responses containing the Vary header.</p>
4545

docs/manual/mod/mod_ident.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<identifier>ident_module</identifier>
3030

3131
<summary>
32-
<p>This module queries an <a href="http://www.ietf.org/rfc/rfc1413.txt"
32+
<p>This module queries an <a href="https://www.rfc-editor.org/rfc/rfc1413"
3333
>RFC 1413</a> compatible daemon on a remote host to look up the owner of
3434
a connection.</p>
3535
</summary>
@@ -45,7 +45,7 @@ user</description>
4545
<context>directory</context></contextlist>
4646

4747
<usage>
48-
<p>This directive enables <a href="http://www.ietf.org/rfc/rfc1413.txt"
48+
<p>This directive enables <a href="https://www.rfc-editor.org/rfc/rfc1413"
4949
>RFC 1413</a>-compliant logging of the remote user name for each
5050
connection, where the client machine runs identd or something similar.
5151
This information is logged in the access log using the <code>%...l</code>
@@ -77,7 +77,7 @@ user</description>
7777
<usage>
7878
<p>This directive specifies the timeout duration of an ident
7979
request. The default value of 30 seconds is recommended by <a
80-
href="http://www.ietf.org/rfc/rfc1413.txt">RFC 1413</a>, mainly because
80+
href="https://www.rfc-editor.org/rfc/rfc1413">RFC 1413</a>, mainly because
8181
of possible network latency. However, you may want to adjust the
8282
timeout value according to your local network speed.</p>
8383
</usage>

docs/manual/mod/mod_mime.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ module="mod_mime_magic">MimeMagicFile</directive></seealso>
161161
designed for transmitting a binary file in an ASCII (text)
162162
format.</p>
163163

164-
<p>The <a href="http://www.ietf.org/rfc/rfc2616.txt">HTTP/1.1
164+
<p>The <a href="https://www.rfc-editor.org/rfc/rfc2616">HTTP/1.1
165165
RFC</a>, section 14.11 puts it this way:</p>
166166

167-
<blockquote cite="http://www.ietf.org/rfc/rfc2616.txt">
167+
<blockquote cite="https://www.rfc-editor.org/rfc/rfc2616">
168168
<p>The Content-Encoding entity-header field is used as a modifier to
169169
the media-type. When present, its value indicates what additional
170170
content codings have been applied to the entity-body, and thus what

docs/manual/mod/mod_negotiation.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Negotiation</a></seealso>
7676

7777
<dt><code>Content-Language:</code></dt>
7878
<dd>The language(s) of the variant, as an Internet standard
79-
language tag (<a href="http://www.ietf.org/rfc/rfc1766.txt"
79+
language tag (<a href="https://www.rfc-editor.org/rfc/rfc1766"
8080
>RFC 1766</a>). An example is <code>en</code>,
8181
meaning English. If the variant contains more than one
8282
language, they are separated by a comma.</dd>

docs/manual/mod/mod_proxy.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2087,7 +2087,7 @@ header for proxied requests</description>
20872087
<p>This directive controls the use of the <code>Via:</code> HTTP
20882088
header by the proxy. Its intended use is to control the flow of
20892089
proxy requests along a chain of proxy servers. See <a
2090-
href="http://www.ietf.org/rfc/rfc2616.txt">RFC 2616</a> (HTTP/1.1), section
2090+
href="https://www.rfc-editor.org/rfc/rfc2616">RFC 2616</a> (HTTP/1.1), section
20912091
14.45 for an explanation of <code>Via:</code> header lines.</p>
20922092

20932093
<ul>

docs/manual/mod/mod_ssl.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ SSLEngine on
601601
</example>
602602
<p><directive>SSLEngine</directive> can be set to <code>optional</code>:
603603
this enables support for
604-
<a href="http://www.ietf.org/rfc/rfc2817.txt">RFC 2817</a>.
604+
<a href="https://www.rfc-editor.org/rfc/rfc2817">RFC 2817</a>.
605605
</p>
606606
</usage>
607607
</directivesynopsis>
@@ -653,29 +653,29 @@ The available (case-insensitive) <em>protocol</em>s are:</p>
653653
This is the Secure Sockets Layer (SSL) protocol, version 3.0, from
654654
the Netscape Corporation.
655655
It is the successor to SSLv2 and the predecessor to TLSv1, but is
656-
deprecated in <a href="http://www.ietf.org/rfc/rfc7568.txt">RFC 7568</a>.</p></li>
656+
deprecated in <a href="https://www.rfc-editor.org/rfc/rfc7568">RFC 7568</a>.</p></li>
657657

658658
<li><code>TLSv1</code>
659659
<p>
660660
This is the Transport Layer Security (TLS) protocol, version 1.0.
661661
It is the successor to SSLv3 and is defined in
662-
<a href="http://www.ietf.org/rfc/rfc2246.txt">RFC 2246</a>.
662+
<a href="https://www.rfc-editor.org/rfc/rfc2246">RFC 2246</a>.
663663
It is supported by nearly every client.</p></li>
664664

665665
<li><code>TLSv1.1</code> (when using OpenSSL 1.0.1 and later)
666666
<p>
667667
A revision of the TLS 1.0 protocol, as defined in
668-
<a href="http://www.ietf.org/rfc/rfc4346.txt">RFC 4346</a>.</p></li>
668+
<a href="https://www.rfc-editor.org/rfc/rfc4346">RFC 4346</a>.</p></li>
669669

670670
<li><code>TLSv1.2</code> (when using OpenSSL 1.0.1 and later)
671671
<p>
672672
A revision of the TLS 1.1 protocol, as defined in
673-
<a href="http://www.ietf.org/rfc/rfc5246.txt">RFC 5246</a>.</p></li>
673+
<a href="https://www.rfc-editor.org/rfc/rfc5246">RFC 5246</a>.</p></li>
674674

675675
<li><code>TLSv1.3</code> (when using OpenSSL 1.1.1 and later)
676676
<p>
677677
A new version of the TLS protocol, as defined in
678-
<a href="http://www.ietf.org/rfc/rfc8446.txt">RFC 8446</a>.</p></li>
678+
<a href="https://www.rfc-editor.org/rfc/rfc8446">RFC 8446</a>.</p></li>
679679

680680
<li><code>all</code>
681681
<p>
@@ -981,7 +981,7 @@ Beginning with version 2.4.7, mod_ssl makes use of
981981
standardized DH parameters with prime lengths of 2048, 3072 and 4096 bits
982982
and with additional prime lengths of 6144 and 8192 bits beginning with
983983
version 2.4.10
984-
(from <a href="http://www.ietf.org/rfc/rfc3526.txt">RFC 3526</a>), and hands
984+
(from <a href="https://www.rfc-editor.org/rfc/rfc3526">RFC 3526</a>), and hands
985985
them out to clients based on the length of the certificate's RSA/DSA key.
986986
With Java-based clients in particular (Java 7 or earlier), this may lead
987987
to handshake failures - see this
@@ -2660,7 +2660,7 @@ OCSP response for a single cert. For server certificates with intermediate
26602660
CA certificates in their chain (the typical case nowadays),
26612661
stapling in its current implementation therefore only partially achieves the
26622662
stated goal of "saving roundtrips and resources" - see also
2663-
<a href="http://www.ietf.org/rfc/rfc6961.txt">RFC 6961</a>
2663+
<a href="https://www.rfc-editor.org/rfc/rfc6961">RFC 6961</a>
26642664
(TLS Multiple Certificate Status Extension).
26652665
</p>
26662666

@@ -2843,7 +2843,7 @@ One potential use is when a proxy is used for retrieving OCSP queries.</p>
28432843
<usage>
28442844
<p>Optionally configures a secret key for encrypting and decrypting
28452845
TLS session tickets, as defined in
2846-
<a href="http://www.ietf.org/rfc/rfc5077.txt">RFC 5077</a>.
2846+
<a href="https://www.rfc-editor.org/rfc/rfc5077">RFC 5077</a>.
28472847
Primarily suitable for clustered environments where TLS sessions information
28482848
should be shared between multiple nodes. For single-instance httpd setups,
28492849
it is recommended to <em>not</em> configure a ticket key file, but to

0 commit comments

Comments
 (0)