1. GET, POST, HEAD, OPTIONS HTTP 메서드만 허용GET, POST만 허용 (나머지 PUT, DELETE, PATCH, OPTIONS 등) 403 Forbidden 에러 발생server { listen 80; server_name xxx.com; //GET, POST 메서드만 허용 location / { limit_except GET POST { deny all; } proxy_pass http://localhost:8080/; proxy_set_header X-Real-IP $reomote_addr; proxy_set_header X-Forwarded-For $proxy-add_..