首页
点滴
Nginx 配置IP白名单访问
1、在conf目录下创建IP白名单文件`ip_whitelist.conf` 2、在`ip_whitelist.conf`文件中添加IP ``` allow 192.168.0.1; allow 192.168.0.2; allow 192.168.0.3; ``` 3、在Nginx配置文件`nginx.conf`中的`location`添加配置,默认找到是/etc/nginx 目录的文件, 也可以写绝对路径,如 /my_conf/conf/ip_whitelist.conf ``` location / { include ip_whitelist.conf; # ip白名单文件 deny all; # 拒绝全部 ...其他配置项 } ``` 注意:如果是在Docker中跑的Nginx,那么白名单路径所在目录就需要挂载到容器中的 /etc/nginx 目录
博客分类
源码解析 (1)
多线程 (5)
Java (10)
Linux (8)
Docker (9)
SpringBoot (14)
微服务 (1)
Redis (15)
MySQL (7)
VMware (3)
Nginx (15)
MyBatis (2)
RabbitMQ (1)
Git (7)
工具类 (12)
前端 (3)
友情链接
layui
© 2020-2025 www.chenhuazhan.com All Rights Reserved 备案号:
桂ICP备17004487号-1
粤公网安备44030002005146