Discover Centmin Mod today
Register Now

Nginx [nginx-announce] nginx-1.27.1

Discussion in 'Nginx and PHP-FPM news & discussions' started by eva2000, Aug 15, 2024.

  1. eva2000

    eva2000 Administrator Staff Member

    53,142
    12,108
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,643
    Local Time:
    11:55 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Changes with nginx 1.27.1 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.


    *) Change: now the stream module handler is not mandatory.

    *) Bugfix: new HTTP/2 connections might ignore graceful shutdown of old
    worker processes.
    Thanks to Kasei Wang.

    *) Bugfixes in HTTP/3.


    --
    Sergey Kandaurov
    _______________________________________________
    nginx-announce mailing list
    nginx-announce@nginx.org
    https://mailman.nginx.org/mailman/listinfo/nginx-announce

    Continue reading...
     
  2. eva2000

    eva2000 Administrator Staff Member

    53,142
    12,108
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,643
    Local Time:
    11:55 PM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    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