1
0
mirror of https://github.com/actix/actix-website synced 2025-01-22 16:15:56 +01:00

fix http2 rfc links

fixes #235
This commit is contained in:
Rob Ede 2022-03-21 01:54:49 +00:00
parent e370fddcc3
commit 36b3f9a3d7
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933

View File

@ -20,13 +20,13 @@ openssl = { version = "0.10", features = ["v110"] }
{{< include-example example="http2" file="main.rs" section="main" >}}
Upgrades to HTTP/2 described in [RFC §3.2][rfcsection32] are not supported. Starting HTTP/2 with prior knowledge is supported for both cleartext and TLS connections ([RFC §3.4][rfcsection34]) (when using the lower level `actix-http` service builders).
Upgrades to HTTP/2 described in [RFC 7540 §3.2][rfcsection32] are not supported. Starting HTTP/2 with prior knowledge is supported for both cleartext and TLS connections ([RFC 7540 §3.4][rfcsection34]) (when using the lower level `actix-http` service builders).
> Check out [examples/tls][examples] for a concrete example.
> Check out [the TLS examples][examples] for concrete example.
[rfcsection32]: https://http2.github.io/http2-spec/#rfc.section.3.2
[rfcsection34]: https://http2.github.io/http2-spec/#rfc.section.3.4
[rfcsection32]: https://httpwg.org/specs/rfc7540.html#rfc.section.3.2
[rfcsection34]: https://httpwg.org/specs/rfc7540.html#rfc.section.3.4
[bindrustls]: https://docs.rs/actix-web/4/actix_web/struct.HttpServer.html#method.bind_rustls
[bindopenssl]: https://docs.rs/actix-web/4/actix_web/struct.HttpServer.html#method.bind_openssl
[tlsalpn]: https://tools.ietf.org/html/rfc7301
[examples]: https://github.com/actix/examples/tree/master/https-tls/rustls
[examples]: https://github.com/actix/examples/tree/master/https-tls