Last active
October 1, 2024 10:03
-
-
Save VirtuBox/8d23ba23cc0aba50a4930d5f737c66d2 to your computer and use it in GitHub Desktop.
HTTP/3 QUIC conf with more_set_headers
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
more_set_headers "X-protocol : $server_protocol always"; | |
more_set_headers 'Alt-Svc h3=":$server_port"; ma=86400'; | |
quic_retry on; | |
listen 443 quic; | |
listen 443 ssl; | |
listen [::]:443 quic; | |
listen [::]:443 ssl; |
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
more_set_headers "X-protocol : $server_protocol always"; | |
more_set_headers 'Alt-Svc h3=":$server_port"; ma=86400'; | |
quic_retry on; | |
listen 443 quic reuseport default_server; | |
listen 443 ssl; | |
listen [::]:443 quic reuseport default_server; | |
listen [::]:443 ssl; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment