This document provides instructions on how to modify the zero-site-protector.php file in order to set the scope of the methods that are protected by Zero Site Protector. By default, the scope only covers the HTTP GET method, but you can add others such as POST, PUT, and DELETE by adding the corresponding constants to the GLOBAL_ALLOWED_METHODS array.

// By default, the scope of Zero Site Protector only covers HTTP GET method, you can add others such as [ALLOWED_METHOD_GET, ALLOWED_METHOD_POST];.
define("GLOBAL_ALLOWED_METHODS", [ALLOWED_METHOD_GET]);