webserver-llc / angie

Angie - drop-in replacement for Nginx
https://en.angie.software
BSD 2-Clause "Simplified" License
1.21k stars 65 forks source link

how to enable quic like in old nginx-quic repository? #86

Closed osevan closed 5 months ago

osevan commented 5 months ago

Hey devs,

how i can enable quic like in old repository with --with-http_v3_module --with-stream_quic_module <–-----

How to enable at configure level?

Thanks and

Best regards

VBart commented 5 months ago

Support for QUIC in stream module was removed in nginx and that branch as well, see: https://hg.nginx.org/nginx/rev/113e2438dbd4

Could you explain the use case?

osevan commented 5 months ago

At the moment i thought every function is needed by http3.

.

osevan commented 5 months ago

I thought quic is for datagram http3.

Isnt it?

osevan commented 5 months ago

I want datagram socket instead of stream sockets

VBart commented 5 months ago

Stream module is for streaming L4 data, which can be datagram (UDP) or TCP. For proxying HTTP/3 you can use QUIC + HTTP/3 support in the HTTP module.

osevan commented 5 months ago

Ok, thanks you very much.