mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-10-06 05:24:37 +08:00
Merge pull request #2668 from nextcloud/nginx-h3
add http/3 docs to nginx reverse proxy docs
This commit is contained in:
commit
07faad0ab2
1 changed files with 5 additions and 0 deletions
|
@ -274,6 +274,11 @@ server {
|
||||||
|
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
listen [::]:443 ssl http2; # comment to disable IPv6
|
listen [::]:443 ssl http2; # comment to disable IPv6
|
||||||
|
|
||||||
|
# http3 on; # uncomment to enable HTTP/3 / QUIC - supported on nginx v1.25.0+
|
||||||
|
# listen 443 quic; # uncomment to enable HTTP/3 / QUIC - supported on nginx v1.25.0+
|
||||||
|
# listen [::]:443 quic; # uncomment to enable HTTP/3 / QUIC - supported on nginx v1.25.0+
|
||||||
|
# add_header alt-svc 'h3=":443"; ma=86400, h3-29=":443"; ma=86400'; # uncomment to enable HTTP3/QUIC - supported on nginx v1.25.0+
|
||||||
|
|
||||||
server_name <your-nc-domain>;
|
server_name <your-nc-domain>;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue