in REQUEST METHOD to server, we have POST , GET , PATCH , i need to disable this request method PATCH
Hi Till, GET, POST, PUT, PATCH, and DELETE are the five most common HTTP methods for retrieving from and sending data to a server. i need to disabled method PATCH..
Ok, so the question is not about ISPConfig as the headline suggests, but about the web server, which is Apache or Nginx. Do you use Apache or Nginx?
Then you can do this by creating a .htaccess file in the web directory of the site and putting this inside that file: Code: <Limit PATCH> Require all denied </Limit> Alternatively, you can put this in the apache directives field on the options tab of the website in ISPConfig: Code: <Directory "{DOCROOT_CLIENT}"> <Limit PATCH> Require all denied </Limit> </Directory>