We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nginx 1.25.1+ was released, and it has now deprecated the http2 parameter in Nginx listen directive in favour of using an http2 directive standalone with on/off values.
nginx -t ... server { listen 443 ssl http2; ...
server { listen 443 ssl; http2 on;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Information
Details
Description
Nginx 1.25.1+ was released, and it has now deprecated the http2 parameter in Nginx listen directive in favour of using an http2 directive standalone with on/off values.
Steps to reproduce
nginx -t
...
server {
listen 443 ssl http2;
...
Expected behavior
server {
listen 443 ssl;
http2 on;
Screenshots
The text was updated successfully, but these errors were encountered: