Actions
Todo #15863
openUpdate nginx HTTP2 syntax
Start date:
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
25.01
Release Notes:
Default
Description
nginx is logging a deprecation notice for the current HTTP2 syntax:
2024/11/25 08:06:48 [warn] 80936#100292: the "listen ... http2" directive is deprecated, use the "http2" directive instead in /var/etc/nginx-webConfigurator.conf:30 2024/11/25 08:06:48 [warn] 80936#100292: the "listen ... http2" directive is deprecated, use the "http2" directive instead in /var/etc/nginx-webConfigurator.conf:31
The lines in question are:
listen 443 ssl http2; listen [::]:443 ssl http2;
These should be changed to:
listen 443 ssl; listen [::]:443 ssl; http2 on;
That should be done for both the GUI and captive portal web server configurations.
Updated by Jim Pingle about 15 hours ago
- Status changed from New to Feedback
- % Done changed from 0 to 100
Applied in changeset 6221ed9c9aa664361a79796b9b1535cb987e9c77.
Actions