Nginx 1.23.4
introduces listen directive consistency check between all config files.
All listen 443
directives must be with the same options. So example below shows incorrect configuration:
# in some files: listen 443 ssl http2; # in another: listen 443 ssl;
So check every virtualhost config file and also /nginx/conf.d/default.conf
More: