nginx配置之禁止访问和404错误功能配置 禁止访问功能配置 nginx.conf中的http{}中的server{}的location ..{}中: location / { #拒绝访问,192.168.16.0网段的同学都无法访问 /24是子网掩码的意思 deny 192.168.16.0/24; root html; ... 运维 2023-11-11 57 点赞 0 评论 86 浏览