You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nginx -t
nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in etc/nginx/nginx.conf :15
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
After updating nginx we get deprecation warnings.
It is described here
https://www.nginx.com/blog/nginx-plus-r30-released/
Change this:
listen 443 ssl http2;
To this:
listen 443 ssl;
http2 on;
The text was updated successfully, but these errors were encountered: