It is good idea to get notified when someone logs into your Linux server. First be sure that your server is able to send email (at least Postfix + valid …
Category: Web Hosting
Protect wp-login.php with .htaccess
Brute force attack aims at being the simplest kind of method to gain access to a site (wordpress or not). It combines usernames and passwords, over and over again, until …
Simple FTP backup script
The first post for this year… Simple FTP backup script # nano backup_script# nano backup_script Add next lines and save. #!/bin/bash DM=$(date +"%Y-%m-%d") tar -Pzcf /backup/backup_$DM.tar.gz /backup/some_dir/ cd /backup ftp …