Disable Bot Verification on your Domains (DDoS protection litespeed)

Enable reCAPTCHA Protection for any URL

You can enable reCAPTCHA for a specific URL. For example, you might want to protect the admin area (/administrator/) for all Joomla sites on the server.

Example

In cPanel, create /etc/apache2/conf.d/userdata/joomlaprotection.conf with the following content:

<IfModule LiteSpeed>
RewriteRule /administrator/ - [E=verifycaptcha:deny]
</IfModule>

Apply to all cPanel virtual hosts and restart LiteSpeed:

/usr/local/cpanel/scripts/rebuildhttpdconf
service lsws restart


Recaptcha verification will be shown on your Domain if your customer connecting IP has a low reputation which is a sort of Server security in order to filter the unwanted traffic to your Domains If you would like to disable the same for your domain you can do the following

<IfModule LiteSpeed>
RewriteRule .* - [E=verifycaptcha:deny]
</IfModule>

If you include the below line in the above code RewriteCond SOME-CONDITIONAL-CHECK
It will check for some Suspicious UA IP's (Its your choice if your would like to add it you can add below <IfModule Litespeed>Create a .htaccess file under /home/username/public_html/.htaccess and add the above code which should disable captcha
  •  
 
  • ddos
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Подключение по ftp

Для работы с ftp в cpanel можно использовать те же доступы что и для cpanel (тот же логин и...

Prevent DDOS to xmlrpc.php (wordpress) with ModSecurity

Lots of attacks are made towards WordPress XML-RPC (xmlrpc.php), which can cause a slowdown in...

htaccess public laravel

There are two solutions: 1. Using .htaccess with mod_rewrite   DirectoryIndex index.php...

DDoS защита в Litespeed

Пример конструкции `.htaccess` с **LsRecaptcha** и `max_conn` LiteSpeed позволяет использовать...

unknown collation utf8mb4_0900_ai_ci

sed -i 's/utf8mb4_0900_ai_ci/utf8_general_ci/g' YOUR_SQL_FILE_NAME.sql sed -i...