NGINX 1.25 was released! What about hestia QUIC/HTTP3 support?

Can we expect QUIC in the next update?

2 Likes

its on the to do list, not sure yet when it will follow.

2 Likes

Connect source nginx-quic : Sergey Maslov

sudo add-apt-repository ppa:5-sergey/nginx-quic
sudo apt update
sudo cp -r /etc/nginx /etc/nginx_bak
sudo apt purge nginx -y
sudo apt install nginx

root@:~# nginx -V
nginx version: nginx/1.25.1 (1.25.1-2~jammy)
built with OpenSSL 3.0.9+quic1 30 May 2023
TLS SNI support enabled

sudo rm -rf /etc/nginx
sudo cp -r /etc/nginx_bak /etc/nginx

sudo vi /home/{your user}/conf/web/{your site}/nginx.ssl.conf

insert:

server {
listen your_ip_address:443 ssl;
http2 on;
listen your_ip_address:443 quic;

and

add_header alt-svc ‘h3-25=“:443”; ma=2592000, h3-27=“:443”; ma=2592000, h3-28=“:443”; ma=2592000, h3-29=“:443”; ma=2592000, h3=“:443”; ma=2592000’;
add_header X-protocol $server_protocol always;

include /home/{your user}/conf/web/{your site}/nginx.hsts.conf*;

Save. B apply settings: nginx -s reload

In the HestiaCP panel, open the udp port for 443
Done.

1 Like

Sorry, but what’s the rush to go and upgrade to an experimental feature?

As the change log states:
Changes with nginx 1.25.0 23 May 2023

*) **Feature: experimental HTTP/3 support**.
1 Like

Someone wants to use QUIC already.

1 Like

THIS! It doesnt make sense at all to use a n unknown repository to install an experimental feature…

1 Like