server { listen 80; server_name example.com; location / { # 允许所有IP地址访问 allow all; # 禁止特定IP地址或IP地址段访问 deny 192.168.1.1; deny 10.0.0.0/24; deny 203.0.113.0/24; # 其他允许/禁止规则... # 配置其他Nginx选项 } # 其他server配置...}
2 篇文章