-
Notifications
You must be signed in to change notification settings - Fork 8
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/2 - Enable http2 H2C #483
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 7f26aa6 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Wed May 24 11:33:01 2023 +0200 test: repair tests commit 133c9b8 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Wed May 24 11:32:12 2023 +0200 feat: adding HTTP/2.0 protocol support to server configuration commit 92778b0 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Tue May 23 09:10:51 2023 +0200 feat: adding HTTP/2.0 protocol support to server commit 3b664e3 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Tue May 23 09:08:18 2023 +0200 test: ignore JUnit Jupiter transitive dep see #440
commit e406f5c Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Wed Nov 8 10:57:47 2023 +0100 feat: HTTP/2 seems to work commit b862985 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Tue Nov 7 15:38:44 2023 +0100 chore: stash commit commit 55e4a61 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Thu Nov 2 13:45:45 2023 +0100 Revert "test: trying to enforce H11, H2, and H2c with secure on forward" This reverts commit 9e9e422. commit 9e9e422 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Thu Nov 2 13:45:34 2023 +0100 test: trying to enforce H11, H2, and H2c with secure on forward commit e4db43e Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Thu Nov 2 12:33:55 2023 +0100 test: workaround on test fixing commit 3cbee46 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Thu Nov 2 11:44:18 2023 +0100 feat: allow multiple protocols for listeners commit 1dfe04b Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Thu Nov 2 10:35:54 2023 +0100 feat: use a single protocol per connection pool commit a4aca75 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Tue Oct 31 12:51:05 2023 +0100 docs: spread some documentation while recovering what to do commit bed4a42 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Mon Oct 30 18:44:26 2023 +0100 build: minor adjustment to Git tracking configs and scripts commit c0a98b9 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Wed May 24 11:33:01 2023 +0200 test: repair tests commit 368baee Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Wed May 24 11:32:12 2023 +0200 feat: adding HTTP/2.0 protocol support to server configuration commit 3449650 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Tue May 23 09:10:51 2023 +0200 feat: adding HTTP/2.0 protocol support to server commit c735c92 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Tue May 23 09:08:18 2023 +0200 test: ignore JUnit Jupiter transitive dep see #440 commit 38f4fa0 Author: Niccolò Maltoni <niccolo.maltoni@diennea.com> Date: Mon Oct 30 18:05:50 2023 +0100 build: upgrade Node.js version to latest LTS * upgrade Node.js from Gallium LTS to Iron LTS * upgrade yarn lockfile
5 tasks
NiccoMlt
force-pushed
the
409-http2-enable-http2-h2c
branch
from
July 25, 2024 01:25
7309b52
to
5feb2e2
Compare
I followed the development process with @NiccoMlt . From my side, it's okay... but I also ask for a review from @diegosalvi @pv3nturi @diegosalvi |
hamadodene
approved these changes
Jul 29, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Replaces outdated #449, closes #409
hamcrest-core
with latest version onhamcrest
protocol
configuration tolistener
configurationTo use the new configuration, you have to your listeners configurations a
protocol
property, which may assume one or more of the following values (separated by commas):HTTP11
H2
(not supported yet, wait for HTTP/2 - Enable http2 H2 #410)H2C
The strings should be case-insensitive.
Default value is
HTTP11,H2C
if ssl is not enabled, orHTTP11
is ssl is enabled.