码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx 设置禁用 OPTIONS 请求

时间:2021-01-14 11:24:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:url   options   服务   配置   ima   col   style   info   图片   

Nginx 设置禁用 OPTIONS 请求


 

 

1、修改 nginx 配置

在 nginx.conf 配置文件中,增加如下内容:

if ($request_method ~* OPTIONS) {
        return 403;
}

 

效果如下:

技术图片

 

 

2、重启 nginx 服务

systemctl restart nginx

或者

service nginx restart

技术图片

 

 

3、功能验证

使用如下命令:

curl -v -X OPTIONS http://localhost:8080/

或者

使用 postman 等浏览器模拟器访问验证

 

效果如下:

技术图片

 

Nginx 设置禁用 OPTIONS 请求

标签:url   options   服务   配置   ima   col   style   info   图片   

原文地址:https://www.cnblogs.com/miracle-luna/p/14274395.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!