Changes with nginx 1.26.2 14 Aug 2024 *) Security: processing of a specially crafted mp4 file by the ngx_http_mp4_module might cause a worker process crash (CVE-2024-7347). Thanks to Nils Bars. -- Sergey Kandaurov _______________________________________________ nginx-announce mailing list nginx-announce@nginx.org https://mailman.nginx.org/mailman/listinfo/nginx-announce Continue reading...
FYI, Centmin Mod doesn't enable MP4 nginx module by default unless you specifically enabled it via persistent config file /etc/centminmod/custom_config.inc set variable options Code (Text): NGINX_MP4='y' or via enabling NGINX_VIDEO='y' variable which enables the following Nginx modules for NGINX_SLICE='y', NGINX_RTMP='y', NGINX_FLV='y', NGINX_MP4='y' Code (Text): NGINX_VIDEO='y' You can verify if Nginx has MP4 enabled via nginx -V command and grep filter for work mp4 Code (Text): nginx -V 2>&1 | grep -o mp4 if returns empty then MP4 nginx module not enabled, if returns mp4 then MP4 is enabled