njs-0.7.11

2023-03-09 Thread Dmitry Volyntsev
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). Notable new features: - XMLNode API to modify XML documents: : const xml = require("xml"); : let data = `ToveJani`; : let doc = xml.parse(data); : : doc.$root.to.$attr$b = 'bar2'; : doc.$root.to.setAttribute('c', 'baz');

Re: Issue with getting to HTTP/3 or QUIC on first connect

2023-03-09 Thread Eric Germann via nginx
For the archives: - I pulled down latest version of nginx-quic and built it. The error seems to be resolved. First page on the site now shows http/3 - As for https://http3check.net , the reason it failed was I had the root page protected behind basic auth. Since it do

Re: Issue with getting to HTTP/3 or QUIC on first connect

2023-03-09 Thread Roman Arutyunyan
Hi Eric, > On 9 Mar 2023, at 10:56, Eric Germann via nginx wrote: > > I’m having an issue where I (think I) have enabled HTTP3 correctly on my > nginx server. When I connect to the server the first time, it indicates > HTTP/2 in the logs. If I hit refresh it indicates HTTP/3 from then on. N