1
0
mirror of https://github.com/actix/actix-website synced 2024-11-23 16:31:08 +01:00
actix-website/docs/http2.md

32 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2018-05-22 23:15:08 +02:00
---
2020-09-12 17:21:54 +02:00
title: HTTP/2
2018-05-22 23:15:08 +02:00
---
import RenderCodeBlock from '@theme/CodeBlock';
import CodeBlock from '@site/src/components/code_block';
2023-11-01 16:28:34 +01:00
`actix-web` automatically upgrades connections to _HTTP/2_ if possible.
2018-05-22 23:15:08 +02:00
# Negotiation
2020-09-12 17:21:54 +02:00
<!-- TODO: use rustls example -->
2022-02-26 05:41:49 +01:00
2024-03-02 18:30:54 +01:00
When either of the `rustls` or `openssl` features are enabled, `HttpServer` provides the [`bind_rustls()`][bindrustls] method and [`bind_openssl()`][bindopenssl] methods, respectively.
2018-05-22 23:15:08 +02:00
<!-- DEPENDENCY -->
2024-03-02 18:30:54 +01:00
<CodeBlock example="http2" file="manifest" section="deps" language="toml"></CodeBlock>
2022-02-26 05:41:49 +01:00
<CodeBlock example="http2" file="main.rs" section="main" />
2018-05-22 23:15:08 +02:00
2022-03-21 02:54:49 +01:00
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).
2018-05-22 23:15:08 +02:00
2022-03-21 02:54:49 +01:00
> Check out [the TLS examples][examples] for concrete example.
2022-03-21 02:54:49 +01:00
[rfcsection32]: https://httpwg.org/specs/rfc7540.html#rfc.section.3.2
[rfcsection34]: https://httpwg.org/specs/rfc7540.html#rfc.section.3.4
2024-03-02 18:30:54 +01:00
[bindrustls]: https://docs.rs/actix-web/4/actix_web/struct.HttpServer.html#method.bind_rustls_0_22
2022-03-06 00:55:35 +01:00
[bindopenssl]: https://docs.rs/actix-web/4/actix_web/struct.HttpServer.html#method.bind_openssl
[tlsalpn]: https://tools.ietf.org/html/rfc7301
2022-03-21 02:54:49 +01:00
[examples]: https://github.com/actix/examples/tree/master/https-tls