-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
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
TLS over HTTP/2 #2358
Comments
Thanks for opening your first issue here! 🎉 Be sure to follow the issue template! If you need help or want to chat with us, join us on Discord https://gofiber.io/discord |
Fiber or the one we use as core (fasthttp) does not yet support http2/3 but if you really need http 2/3 you should simply handle and forward this protocol before possible solutions for this are cloudflare, nginx as proxy or other reverse proxies Recipe repository |
Hi @ReneWerner87 Http 2 brings number of benefits that, for those using the gRPC protocol, turn out to be almost fundamental because it is born to work on http2 and some libraries works only on http2.
You have created Fiber in order to be super fast, so I'm pretty sure you know how these benefits could help in terms of performance when you are on an high-traffic scenario I understand that this is not part of your "product" but, in 2023, Http 2.0 cannot not be part of a modern web framework imho. |
http2 is not so trivial and already in development in fasthttp when it is available in core we will support it too |
Hi @ReneWerner87 |
we use fasthttp as core library for http transfer and handling, if this is available as a feature there and this package makes a release, we trigger an update mechanism and it automatically ends up in the next release |
Question Description
I would like to expose the server app on HTTP/2 using TLS 1.3. I've tried forcing the H2 protocol on
tlsConfig
but it is not working.Code Snippet (optional)
Checklist:
The text was updated successfully, but these errors were encountered: