LH
  • Projects
  • Build

Pi Zero W: Webserver Install

My thinking here is that as the Zero is low power it could run a simple static website for me on my LAN. I've used Apache before but never NGINX. So here goes...

I only want a basic webserver to start with so I won't concern myself with PHP set up at this time.

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. sudo apt-get install nginx
  4. sudo systemctl run nginx

Now go to a web browser and navigate to the IP address, or in my case the domain name.

NGINX serving pages < Back