-4

How would I go about disabling Put:/ and DELETE methods server wide CENTOS 6.4 x86_64 ?

Thanks in advance

EEAA
  • 109,363
  • 18
  • 175
  • 245
  • 2
    -1 for lack of research. This being a site for professionals, we generally expect question askers to show that they've done at least a teeny *bit* of research into things on their own. – EEAA Sep 20 '13 at 20:53

1 Answers1

2

You can do something like this:

<Limit PUT DELETE>
    order deny,allow
    deny from all
</Limit>

BTW, all of this is in the documentation.

EEAA
  • 109,363
  • 18
  • 175
  • 245