-
Notifications
You must be signed in to change notification settings - Fork 297
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
Development
: Enable http3 for test servers
#9232
Development
: Enable http3 for test servers
#9232
Conversation
WalkthroughThe updates to the Nginx configuration files significantly enhance the server's capabilities by integrating support for QUIC and HTTP/3 protocols. This allows for simultaneous handling of SSL, HTTP/2, and HTTP/3, while optimizing connection management through directives like Changes
Recent review detailsConfiguration used: .coderabbit.yaml Files selected for processing (1)
Additional comments not posted (4)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice change 👍 Verified QUIC usage with the provided website, and additionally checked with wireshark.
10e09ca
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good 🚀
@@ -23,6 +23,8 @@ location / { | |||
fastcgi_send_timeout 900s; | |||
fastcgi_read_timeout 900s; | |||
client_max_body_size 128M; | |||
# used to advertise the availability of HTTP/3 | |||
add_header alt-svc 'h3=":443"; ma=2592000,h3-29=":443"; ma=2592000'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could consider using persist=1
here to prevent these entries to be deleted when clearing the network config in the browser.
Infrastructure
: Enable HTTP/3 for testserversDevelopment
: Enable HTTP/3 for testservers
Development
: Enable HTTP/3 for testserversDevelopment
: Enable http3 for test servers
Checklist
General
Motivation and Context
The proposed HTTP/3 protocol has several benefits compared to the communication with HTTP/2.
Description
Activate HTTP/3 for Nginx and add port 443 for UDP in the
docker-compose.yml
file.See ls1intum/artemis-ansible-collection#54 for the config changes in Ansible.
Steps for Testing
Testserver States
Note
These badges show the state of the test servers.
Green = Currently available, Red = Currently locked
Click on the badges to get to the test servers.
Review Progress
Code Review
Manual Tests
Summary by CodeRabbit
New Features
Improvements