nginx:[warn] low address bits of x.x.x.x/24 are meaningless in
一,报错信息
web nginx[55459]: nginx: [warn] low address bits of 10.8.0.14/24 are meaningless in /opt/soft/nginx/conf/conf.d/adm.conf:52
原因:
这个问题只是因为写命令时没有严格按照语法来写:
这里要么写成具体IP(10.8.0.14),
要么就是IP地址段 (10.8.0.0/24)
二,解决:
原配置命令:
allow 10.8.0.14/24;
修改后:
allow 10.8.0.0/24;