• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

mod_rewrite on plesk 11.5

gggino

New Pleskian
I have tried for hours to make this working, without success.

There are serveral bots that try to access a non-existent directory on my webserver, /wild

This is quite annoying and is fulling MB and MB of error logs. I would like to block them. ideally, I would like that after X attempts to open anything inside /wild they get blocked for some time, but I think this is possible only with fail2ban, tht is not shipped with plesk 11.5.

What I was trying to do is at least to use mod_rewrite to send them a Gone error message (will this show upp in the log?)

This is what I wrote, but is not working (I have put it in the server configuration field in plesk 11.5 admin panel) (I am also tryting to deny access to any file inside some existing directories on the server, /Connections, /scripts and and directory containing /includes/ in the path). Why is not working? :(

<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
RewriteEngine On
# not a existent file
RewriteCond %{REQUEST_FILENAME} !-f
# and not a folder
RewriteCond %{REQUEST_FILENAME} !-d
# and not a symbolic link
RewriteCond %{REQUEST_FILENAME} !-l
# Is gone
RewriteRule ^wild(/|$) - [G,L]

# is a existent file
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule (/|$)includes(/|$) - [F]
RewriteRule ^Connections(/|$) - [F]
RewriteRule ^scripts(/|$) - [F]
 
Back
Top