Script kiddies have been
DDoSing, warring governments censoring and the Big Tech blocking Russian news outlet
RT (Russia Today @ rt.com). It would be really a shame if there was only one-sided stories available, especially after what has happened with the COVID-19 "news".
From the following partial mirrors (2 link levels) you can read the latest rt.com news:
- Asia: REMOVED NOT WORKING ANYMORE
- USA: REMOVED NOT WORKING ANYMORE
RT News Telegram channel is working as well:
https://t.me/rtnews

You can make your own mirror easily using
wget. Here are the command line parameters for creating mirrors such as the ones above:
Code: Select all
wget -r -l 2 --no-remove-listing -kxKE --no-host-directories --referer REMOVED NOT WORKING ANYMORE --random-wait --wait 1 -e robots=off -t 5 https://www.rt.com/
Before you run the code, you need to create an SSL certificate for the site and move to the webroot directory of your mirror. You can schedule the script for example hourly to keep the mirror up-to-date.
Here is a shell script for GNU/Linux that is also checking whether the mirror is already running before starting to update it. You need to replace CAPITALIZED code with your own settings.
Code: Select all
#!/bin/sh
another_instance()
{
exit 1
}
if [ "$(pgrep THENAMEOFYOURSCRIPT.sh)" != $$ ]; then
another_instance
fi
cd YOUR_WEBROOT_DIRECTORY
wget -r -l 2 --no-remove-listing -kxKEq --no-host-directories --referer YOUR_MIRROR_SITE --random-wait --wait 1 -e robots=off -t 5 https://www.rt.com/
If you get blocked by the DDoS protection, you can inform them about your mirror by email
info@rttv.ru. Leave a reply to my post after your mirror is up and running so others people can find and use it.