Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imelgrat/01b48b47be3a280248cc to your computer and use it in GitHub Desktop.
Save imelgrat/01b48b47be3a280248cc to your computer and use it in GitHub Desktop.
Disable PUT and DELETE Apache requests and disable Server signature display
Disable PUT and DELETE Apache requests and disable Server signature display
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
# disable the server signature
ServerSignature Off
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment