====== Issue ====== ===== nginx: [warn] protocol options redefined for 0.0.0.0:443 ===== 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: * [[https://serverfault.com/questions/1131318/nginx-warn-protocol-options-redefined|nginx: [warn] protocol options redefined]] * [[https://github.com/nginx/nginx/commit/dad65f3e449f215469943628f2b1f12a118fcf7e|Added warning about redefinition of listen socket protocol options.]] * [[https://www.mail-archive.com/nginx@nginx.org/msg24883.html|NGINX 1.23.4 warning message]]