request 방식 제한에 대한 설정 설정 - get, post 이외의 요청을 거부하게 설정 server { location / { limit_except GET POST { deny all; } } } 설정 - get, post 이외의 메서드는 444로 리턴 server { location / { if($request_method !~^(GET|POST)$) { return 444; } } } 테스트 curl -X PUT http://localhost:port curl -X DELETE http://localhost:port 테스트 결과값 403 : 해당 요청을 수행한 권한이 없는 access 405 : 해당 uri에서 메서드를 허용하지 않는다 403 Forbiddennginx nginx 버전 노출 방..