Build your own tor hidden services with Alpine Linux, Nginx and PHP 7 FPM
10K+
Build your own tor hidden services with Alpine Linux, Nginx and PHP 7 FPM
sudo docker run -d --name=nginx -p 80 -v $PWD/html:/var/www/html -e db_name=database -e db_user=username -e db_pass=password inmean/webserver-tor
Tor hostname will automatically generate for the first start. To use your own Tor Hidden Services Hostname version 3 please copy hostname file or map volume to /var/www/tor_host directory
docker run -v your_hostname_path:/var/www/tor_host ...
The environment variable will generate into env.php file and copy into /var/www/html each time container restart
Extend use to create your own docker use following Dockerfile script to start services automatically
EXPOSE 80
CMD ["sh", "/var/www/start.sh"]
Just include following PHP code
error_reporting(-1);
ini_set('display_errors', 'On');
Content type
Image
Digest
Size
35 MB
Last updated
over 5 years ago
docker pull inmean/webserver-tor