server { listen 80 default_server; root /usr/share/nginx/html; location ~ ^/v1/ { default_type application/json; return 503 '{"error":"Service Unavailable","message":"EventHub is temporarily unavailable. Please try again later."}'; } location / { if ($http_accept ~* "application/json") { return 503 '{"error":"Service Unavailable","message":"EventHub is temporarily unavailable. Please try again later."}'; } return 503; } error_page 503 /503.html; location = /503.html { internal; } }