Nginx服务器拒绝post请求方法

最近发现有些攻击利用post请求绕过百度云加速防火墙的情况
Nginx服务器拒绝post请求方法插图
这种情况我们直接禁掉服务器POST请求是不是好些呢,所以主机吧找了个代码放置在Nginx.conf文件上,试了下,果然是有效果的,代码如下:
upstream tomcat {
ip_hash;
server 192.168.2.187:8080;
}
location ~* / {
if ($request_method = PUT ) {
return 403;
}
if ($request_method = DELETE ) {
return 403;
}
if ($request_method = POST ) {
return 403;
}
proxy_method GET;
proxy_pass http://tomcat;
}
当路径包含/的时候,则代理到server后端进行请求数据。这里屏蔽了PUT,DELETE,POST方法,只是使用了GET。

原创文章,作者:kirin,如若转载,请注明出处:https://blog.ytso.com/249618.html

(0)
上一篇 2022年4月22日
下一篇 2022年4月22日

相关推荐

发表回复

登录后才能评论