nginx配置

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

解决方案

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