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

FR: Add HTTP/3 support for nginx #1144

Open
patschi opened this issue May 26, 2023 · 2 comments
Open

FR: Add HTTP/3 support for nginx #1144

patschi opened this issue May 26, 2023 · 2 comments

Comments

@patschi
Copy link
Contributor

patschi commented May 26, 2023

Is your feature request related to a problem? Please describe.
The nginx 1.25.0 mainline version introduced experimental HTTP/3 support:
https://mailman.nginx.org/pipermail/nginx-announce/2023/KEVVKRTAXBWBVXA3DIF5SUKRJWZOEMTM.html

Describe the solution you'd like
Implement a setting to be able to enable HTTP/3 for nginx in Froxlor.

Describe alternatives you've considered
n/a

Additional context
n/a

@patschi
Copy link
Contributor Author

patschi commented May 26, 2023

Documentation:
https://nginx.org/en/docs/http/ngx_http_core_module.html#quic
https://nginx.org/en/docs/quic.html

There are several new options available. To enable it, the config can look like:

server {
        listen IP:443 ssl http2;
        listen IP:443 quic reuseport;

        quic_retry on;
        ssl_early_data on;
        [...]
}

@d00p
Copy link
Member

d00p commented May 26, 2023

even debian 12 only has 1.22.1 in its repositories + its experimental. Hence very low priority

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants