Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

Script Tor Web Server in 18 seconds

D

DM 3

Guest
To get a Tor Web Server up and running in around 18 second, do the following.

This has been tested on Ubuntu / Debian systems only.

nano tor_server.sh

Copy and paste the following script.

Bash:
# update apt
sudo apt-get update -y

# install nginx and tor
sudo apt-get install tor nginx -y

# enable tor server
sed -i 's/#HiddenServiceDir/HiddenServiceDir/' /etc/tor/torrc
sed -i 's/#HiddenServicePort/HiddenServicePort/' /etc/tor/torrc

# restart tor service
sudo systemctl restart tor.service

# make a default index.html file
echo 'Welcome to our Tor website' > /var/www/html/index.html

# get the tor website address
TORADDRESS="$(cat /var/lib/tor/hidden_service/hostname)";

# get ipv4 address
IPADDRESS="$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1  -d'/')";

# clear the screen
clear

# echo some results
echo "HTML Root: /var/www/html";
echo "IPv4 / Insecure URL: http://$IPADDRESS";
echo "Tor / Secure URL http://$TORADDRESS";
echo " ";

Save and exit, then run the file

sudo sh tor_server.sh


This will install the needed software and present you with your new Tor webserver address and the default HTML folder you can upload your website content to.
 
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock