Skip to content
Snippets Groups Projects
README.md 437 B
Newer Older
# Raspberry Pi Dashboard

A custom 'dashboard' intended to be hosted on your Raspberry Pi connected to a TV and accessed over the local network.

nixx's avatar
nixx committed
## How to install
nixx's avatar
nixx committed

nixx's avatar
nixx committed
Install node JS.

Download the zip, unzip it.
nixx's avatar
nixx committed

nixx's avatar
nixx committed
```
nixx's avatar
nixx committed
npm install
node index.js
nixx's avatar
nixx committed
```

nixx's avatar
nixx committed
## Make it run on port 80
nixx's avatar
nixx committed

nixx's avatar
nixx committed
You can't use port 80 without being a super user, but you can redirect it.
nixx's avatar
nixx committed

```
nixx's avatar
nixx committed
sudo iptables -A PREROUTING -t nat -p tcp --dport 80 -j REDIRECT --to-port 3000
```