The HTTPS configuration for Nginx proposed in the documentation introduces a parameter that has recently become deprecated:
The following is expected in the new versions:
listen 443 ssl;
http2 on;
You can verify this by checking the current configuration using the nginx -t command.
[warn] 28426#28426: the "listen ... http2" directive is deprecated, use the "http2" directive instead in /etc/nginx/sites-enabled/pelican.conf:10
More in https://nginx.org/en/docs/http/ngx_http_v2_module.html
The HTTPS configuration for Nginx proposed in the documentation introduces a parameter that has recently become deprecated:
The following is expected in the new versions:
You can verify this by checking the current configuration using the
nginx -tcommand.More in https://nginx.org/en/docs/http/ngx_http_v2_module.html