Want to subscribe to topics you're interested in?
Become a Member

Master Branch fix nginx backlog bug in 123.09beta01

Discussion in 'Centmin Mod Github Commits' started by eva2000, Mar 22, 2022.

  1. eva2000

    eva2000 Administrator Staff Member

    59,369
    12,510
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,145
    Local Time:
    5:09 AM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    fix nginx backlog bug in 123.09beta01

    - recent change from https://community.centminmod.com/threads/update-set-autohardtune_nginxbacklog-y-by-default-again-in-123-09beta01.22507/#post-92145 introduced a bug in main hostname vhost after centmin.sh menu option 4 recompile or new installs where vhost file at /usr/local/nginx/conf/conf.d/virtual.conf missing ending semi-colon preventing nginx server start up or restart

    error on attempted nginx restart/startup would be

    nginx -t
    nginx: [emerg] invalid parameter "server_name" in /usr/local/nginx/conf/conf.d/virtual.conf:3

    incorrect entry would be missing ending semi-colon for listen directive

    listen 80 default_server backlog=32767

    should be

    listen 80 default_server backlog=32767;

    Continue reading...

    Centmin Mod Github Master branch

    Master branch is where most recent commits are made as at May 24, 2015.