跳过正文
  1. Posts/

Nginx禁用非法请求http

·19 字·1 分钟·
Kubehan
作者
Kubehan
云原生知识栈:深度解析容器技术、Kubernetes、Istio、DevOps 实践、Prometheus 监控、Envoy 代理、Golang 开发及云原生架构与微服务趋势的专业博客

全局配置一下代码就OK了

将一下代码添加到nginx的server模块或者location模块

if ($request_method ~ ^(PUT|DELETE)$) {
     return 403;
}

或者

if ($request_method !~ ^(GET|POST)$) {
 return 403;
 }