nextcloud / nextcloud/documentation

Nginx and HTTP/3

Open
#12,196 2 comments 2 reactions 1 assignee View on GitHub

@skjnldsv is already working on this.

Since May 21, 2026.

3. to review manual: admin
Dominant language
JavaScript
Stars
628
Forks
2.5k
Avg merge
2d 11h
Merged PRs (30d)
135

Description

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;

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.