We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
h2
alpn_protocols
axum-server/src/tls_rustls/mod.rs
Line 278 in 86bc6e7
This is wrong as the axum server doesn't necessarily support http2.
The text was updated successfully, but these errors were encountered:
I don't think there is currently a way for axum-server to not serve both protocols HTTP/2. Internally Builder::serve_connection_with_upgrades() is used, so e.g. no matter if you use Builder::http2_only(), both HTTP/1 and HTTP/2 will be served.
axum-server
Builder::serve_connection_with_upgrades()
Builder::http2_only()
Let me know if I'm wrong about that.
Sorry, something went wrong.
No branches or pull requests
axum-server/src/tls_rustls/mod.rs
Line 278 in 86bc6e7
This is wrong as the axum server doesn't necessarily support http2.
The text was updated successfully, but these errors were encountered: