Nginx 设置禁用 OPTIONS 请求

Nginx 设置禁用 OPTIONS 请求


 

 

1、修改 nginx 配置

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

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

 

效果如下:

Nginx 设置禁用 OPTIONS 请求

 

 

2、重启 nginx 服务

systemctl restart nginx

或者

service nginx restart

Nginx 设置禁用 OPTIONS 请求

 

 

3、功能验证

使用如下命令:

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

或者

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

 

效果如下:

Nginx 设置禁用 OPTIONS 请求

 

上一篇:harbor 启动报错:Creating network “harbor_harbor“ with the default driver ERROR: Failed to Setup IP table


下一篇:虚拟机克隆系统以后不能上网