Return JSON error response nginx

Custom JSON body for rate-limit or error responses

error_page 429 /429.json; location = /429.json { default_type application/json; return 429 '{"error":"rate_limited"}'; }
more nginx all 15 commands →