In a lecture I recently had, one of the speakers commented that the only methods that APACHE and NGINX actually accept / support are the GET and POST methods / verbs.
The speaker further clarifies that when other methods such as PUT, PATCH, DELETE and others are used, APACHE and NGINX mask the method, in other words, the methods are converted to GET and POST and passed to the application containing a flag of the old method sent. So the application will know which method was actually sent.
My question is: Are the methods / verbs really accepted by APACHE and the NGINX or the procedure contextualized in the question is what really happens?