Skip to content
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

HTTP reference guide - HTTP/2 section update, drop JDK 8 note #36464

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions docs/src/main/asciidoc/http-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ As with the certificate/key file combination, Quarkus will first try to resolve

Add the following property to your `application.properties`:

[source,bash]
[source,properties]
----
quarkus.http.ssl.certificate.key-store-file=/path/to/keystore
----
Expand Down Expand Up @@ -307,9 +307,8 @@ quarkus.http.handle-100-continue-automatically=true

== HTTP/2 Support

HTTP/2 is enabled by default, and will be used by browsers if SSL is in use on JDK11 or higher. JDK8 does not support
ALPN so cannot be used to run HTTP/2 over SSL. Even if SSL is not in use HTTP/2 via cleartext upgrade is supported,
and may be used by non-browser clients.
HTTP/2 is enabled by default, and will be used by browsers if SSL is in use. Even if SSL is not in use
HTTP/2 via cleartext upgrade is supported, and may be used by non-browser clients.

If you want to disable HTTP/2 you can set:

Expand Down