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

Nginx and HTTP/3 #12196

Open
BlauerHunger opened this issue Sep 10, 2024 · 0 comments
Open

Nginx and HTTP/3 #12196

BlauerHunger opened this issue Sep 10, 2024 · 0 comments

Comments

@BlauerHunger
Copy link

BlauerHunger commented Sep 10, 2024

Since HTTP/3 support has landed in stable versions of nginx, I think it's time to update the sample configurations for nginx to enable HTTP/3 support.

After applying the guide at nginx.org, I encountered the access through untrusted domain-page preventing me from using it as-is, so there seems to be more to it than just that.

Here are the additions for the server-block I used:

listen 443 quic reuseport;
listen [::]:443 quic reuseport;
add_header Alt-Svc 'h3=":443"; ma=86400';
quic_retry on;
quic_gso on;
ssl_early_data on;
proxy_set_header Early-Data $ssl_early_data;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant