Difference between revisions of "Static Website as Tor Hidden Service on Raspberry Pi"

From Run Your Own
Jump to: navigation, search
(Local HTTP server)
(Local HTTP server)
Line 5: Line 5:
 
* Install nginx on the RPi
 
* Install nginx on the RPi
 
  apt install nginx
 
  apt install nginx
* In the browser from another computer on the network, check that you the default HTML page is properly served: http://192.168.1.XXX (you should see a small "Welcome to nginx!" text).
+
* In the browser from another computer on the network, check that you the default HTML page is properly served at: http://192.168.1.XXX (you should see a small "Welcome to nginx!" text).
 
* create a non-default mini static website:
 
* create a non-default mini static website:
 
  mkdir /var/www/partyvan
 
  mkdir /var/www/partyvan
Line 25: Line 25:
 
     }
 
     }
 
  }
 
  }
 +
* Enable site
 +
ln -s /etc/nginx/sites-available/partyvan /etc/nginx/sites-enabled/
 +
service nginx reload
 +
* In the browser from another computer on the network, check that you the default HTML page is properly served: http://192.168.1.XXX (you should see a small "OHAI" text).
  
 
== Tor setup ==
 
== Tor setup ==
  
 
[[Category: Raspberry Pi]]
 
[[Category: Raspberry Pi]]

Revision as of 23:20, 7 March 2020

blablabla

Local HTTP server

as root:

  • Install nginx on the RPi
apt install nginx
  • In the browser from another computer on the network, check that you the default HTML page is properly served at: http://192.168.1.XXX (you should see a small "Welcome to nginx!" text).
  • create a non-default mini static website:
mkdir /var/www/partyvan
echo "OHAI" > /var/www/partyvan/index.html
  • disable nginx default site
rm /etc/nginx/sites-enabled/default
  • create new nginx site config /etc/nginx/sites-available/partyvan with:
server {
    listen 80 default_server;
    listen [::]:80 default_server;

    root /var/www/partyvan;
    index index.html;

    server_name partyvan;

    location / {
        try_files $uri $uri/ =404;
    }
}
  • Enable site
ln -s /etc/nginx/sites-available/partyvan /etc/nginx/sites-enabled/
service nginx reload
  • In the browser from another computer on the network, check that you the default HTML page is properly served: http://192.168.1.XXX (you should see a small "OHAI" text).

Tor setup