Nginx http2 參數問題
BUBU 在更新 Nginx 完後出此異常出現此訊息為 nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in
,經過 google 大神查看是因為在 Nginx 1.25 版已棄用 http2 參數,但是還是可以使用其他方式來使用該參數
解決程過
- 修改前參數
listen 443 ssl http2;
- 修改後參數
listen 443 ssl;
http2 on;