mendip_discovery
New Pleskian
- Server operating system version
- Debian 11.11
- Plesk version and microupdate number
- Plesk Obsidian v18.0.73_build1800251003.15
I am getting spammed/ddos on one site on my server with continuous "HEAD / HTTP/1.0" requests.
I would like to make use of, one part of https://support.plesk.com/hc/en-us/...compliance-scan-shows-a-warning-CVE-2000-0649
where it talks of "Disable support of the outdated HTTP 1.0 protocol".
* Create the file /etc/sw-cp-server/conf.d/disable-http-1.0-plesk.inc
* Edit File /etc/sw-cp-server/conf.d/disable-http-1.0-plesk.inc and add following content to it
This is for the control panel but where should I insert it so that it can be used by Apache for all sites and not get removed in the next Plesk update?
I would like to make use of, one part of https://support.plesk.com/hc/en-us/...compliance-scan-shows-a-warning-CVE-2000-0649
where it talks of "Disable support of the outdated HTTP 1.0 protocol".
* Create the file /etc/sw-cp-server/conf.d/disable-http-1.0-plesk.inc
Code:
touch /etc/sw-cp-server/conf.d/disable-http-1.0-plesk.inc
Code:
if ($server_protocol = HTTP/1.0) {
return 444;
}
This is for the control panel but where should I insert it so that it can be used by Apache for all sites and not get removed in the next Plesk update?