How would I go about disabling Put:/ and DELETE methods server wide CENTOS 6.4 x86_64 ?
Thanks in advance
How would I go about disabling Put:/ and DELETE methods server wide CENTOS 6.4 x86_64 ?
Thanks in advance
You can do something like this:
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
BTW, all of this is in the documentation.