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;

 

posted @ 2025-07-05 08:51  刘宏缔的架构森林  阅读(27)  评论(0)    收藏  举报