Today I have installed PHP 8.3 using this instruction viewtopic.php?f=18&t=52
And after that nginx can not restarted.
Command: sudo nginx -t
Returned for all websites on my server
nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in /home/user1/conf/web/site1.ru.nginx.ssl.conf:2
nginx: [warn] the "listen ... http2" directive is deprecated, use the "http2" directive instead in /home/user2/conf/web/site2.ru.nginx.ssl.conf:2
I have found the solution https://community.centminmod.com/thread ... ion.23890/
I have replaced:
listen 443 ssl http2;
To:
listen 443 ssl;
http2 on;
And after that server fixed and it is working now.