QUIC connection could not be established

2021-11-20 Thread findmyname
Hello all, I'm trying to run nginx with quic support on Ubuntu 20.04. I followed official README https://quic.nginx.org/readme.html. However when I run http3 check https://www.http3check.net/ it returns error: QUIC connection could not be established. I build boringssl and nginx: ``` #!/bin/sh s

Re: QUIC connection could not be established

2021-11-20 Thread findmyname
FYI I tested it also without http2 directive but there wasn't any change. ``` listen 443 http3 reuseport; listen 443 ssl; ``` Posted at Nginx Forum: https://forum.nginx.org/read.php?2,292896,292897#msg-292897 ___ nginx mailing list nginx@nginx.org http

Re: QUIC connection could not be established

2021-11-20 Thread findmyname
Also I forget to mention that I added SSL protocols into /etc/nginx/nginx.conf. ``` ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3; ssl_prefer_server_ciphers on; ``` To avoid any confusions - I'm getting http2 response when using http2 in listen stanza. I'm getting http/1.1 if there isn't h

Re: QUIC connection could not be established

2021-11-20 Thread findmyname
Oh noo I just realized that there was allowed firewall (FW) only for TCP to port 443 :facepalm: The http3 check is passing after FW adjustment. Sorry for spam guys and girls. P.S.: I'm still fighting with firefox and http3 but I'm sure I will figure it out. BR Posted at Nginx Forum: https://for