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
---
2024-05-28 21:23:34 +02:00
import RenderCodeBlock from '@theme/CodeBlock';
import CodeBlock from '@site/src/components/code_block';
2022-07-16 11:59:20 +02:00
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
2022-07-16 11:59:20 +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
2022-07-16 11:59:20 +02: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.
2019-06-25 05:36:32 +02:00
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
2019-06-25 05:36:32 +02:00
[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