../_images/logo.png

http://www.bardolph.org

Web Server Installation

This page contains instructions for installation of the web server. If you just want to run scripts from the command line, please refer to the simpler instructions in Basic Installation.

The web application is designed to run on a local server running in the home, and is not appropriate for a website on the open internet. The underlying Python code uses the LIFX LAN Protocol, which works entirely over an internal WiFi network. This was a deliberate design decision, in an effort to promote security and simplicity.

The focus here is installation on a Raspberry Pi. However, these instructions should be fairly accurate for a typical Debian-based system.

A key goal for this project is to produce something that’s genuinely useful on an everyday basis. For me, that’s a local web server which is available 24/7. This means it should be cheap to buy and consume a small amount of power.

The Raspberry Pi Zero-W has been a good fit for my everyday use. Other Raspberry Pi models will work as well, but the Zero-W is among the cheapest, and is entirely capable enough for this purpose.

The server runs well on a default installation of Raspberry Pi OS. It also runs on generic Debian and MacOS, as long as the machnine’s version of Python is recent enough.

A typical installation involves three components:

  1. The web-based application (the code in the Bardolph package), written in Python that implements the UI and runs the light scripts.

  2. A WSGI gateweay process that launches the Python application and interacts with it via WSGI.

  3. A reverse-proxy HTTP server which communicates with the WSGI gateway over port 8080 and handles the HTTP protocol over port 80 to communicate with end-users’ browsers.

Note

Although this documentation covers the use of waitress for WSGI and Apache as the reverse proxy, you should feel free to use other implementations. Because reverse proxies and WSGI are well-established technologies, a variety of implementations are available for both of them. For more complete information, along with some suggestions for WSGI and HTML servers, I recommend reviewing this web page on the official Flask website: Deploying to Production.

O.S. Setup

This overview assumes you have already installed Raspberry Pi OS on your device. For more information, please refer to the software installation instructions on the official Raspberry Pi website, Getting Started.

Any recent version should be fine, and I would suggest accepting whichever one the installer recommends.

During the installation, make sure you enable WiFi and ssh on your device. The server will be able to run without a monitor or keyboard attached. For more information, see the Raspberry Pi remote access documentation.

If your device has a physical ethernet port, you can use a wired connection instead of WiFi, but it needs to be on the same network that the lights are on.

By default, Raspberry Pi OS already has a Python interpreter, so you won’t need to install it. However, if you desire more information on running Python code, please refer to the Raspberry Pi Python documentation.

Dedicated User

A special-purpose user is convenient for running the server. It provides you with a home directory for the Bardolph code, and allows you to tailor that user’s characteristics to running the server. Therefore, the next step is to create a user called lights.

sudo adduser lights

Note that this user doesn’t have any special privileges. In fact, I definitely recommend that you do not give that user sudo membership. This ensures that the Python code itself runs under a standard account, thus improving security.

I also change the name of the server. In this example, my server will be “vanya”, accessed on the command line and in my browser as “vanya.local”. This can be done during O.S. installation or with raspi-config.

Log Directory Setup

This is a step you take as a user that has sudo access, such as the pi default user.

The web site configuration files in the source tree specify that all of the logs reside in the directory /var/log/lights. Therefore, as part of your setup, you need to do the following:

sudo mkdir /var/log/lights
sudo chown lights:lights /var/log/lights

This allows processes owned by the lights meta-user to write all of the logs in one place.

HTTP Server Setup

The WSGI server can be accessed via a browser through HTTP on port 8080. However, it is strongly recommended that you use a reverse proxy implemented by a robust HTTP server that binds to port 80. To that end, these instructions cover use of the well-known Apache server.

If Apache is not already available, you should be able install it with your package manager. For example:

sudo apt update
sudo apt install apache2

After Apache has been installed, you will neeed to enable the reverse-proxy modules:

sudo a2enmod proxy
sudo a2enmod proxy_http

To configure the proxy modules, edit /etc/apache2/sites-available/000-default.conf to contain:

<VirtualHost *:80>
    # Other settings are already here by default. You can edit them as
    # necessary

    # Configure reverse proxy to the WSGI process.
    ProxyPreserveHost On
    ProxyPass "/" "http://127.0.0.1:8080/"
    ProxyPassReverse "/" "http://127.0.0.1:8080"
</VirtualHost>

For more information on using the web server, please see Web Frontend Server.

Restart The HTTP Server With The New Configuration

By default, the apache2 daemon will already be running. You need to restart it to enable the new configuration with:

sudo systemctl restart apache2

Download The Source Tree

The web server relies on many non-Python files that are not part of the packaged distribution. As a result, you’ll need to clone the entire source tree. First, log in as the lights user, then:

git clone https://github.com/al-fontes-jr/bardolph

Set Up a Virtual Environment

To facilitate the installation of the Python modules from PyPi, you will probably want to set up a virtual environment. Although I’m still experimenting with this, currently I recommend creating one in a directory named bardolph-venv.

To create the virtual environment, from your home directory as the lights user:

lights@harper:~ $ python -m venv bardolph-venv

The resulting directory structure will look like:

/home/lights/bardolph
/home/lights/bardolph-venv

The goal of this layout is to keep a clean separation between the application files and the rather complex file structure that venv creates.

Activating

Every time you want to work with anything Bardolph-related, you need to first activate the virtual environment. From the lights home directory:

source bardolph-venv/bin/activate

Install The Python Modules

Before proceeding, be sure that you have activated the virtual environment, as described in the previous section. Then, still logged in as the lights user:

pip install bardolph

After this intallation, the following shell scripts will be available whenever the virtual environment is activated.

  • lsc - Compile a light script into a Python program.

  • lsrun - Run a light script from the command line.

  • lscap - Capture the current state of all the lights on the network.

These commands are further documented in Command-Line Tools.

Testing the Installation

To do a quick sanity check:

lsrun -h

This should display a help screen. To make sure Bardolph is able to access your lights:

lscap

For every the device that is discovered, you will see a plain-text table of its current settings.

Flask Application Server

For this step, you should be logged in as user lights.

The HTTP server communicates with other devices on your network via HTTP on port 80. All of the program logic and the UI implemtation are in a web app, contained in a Python module. This app binds to port 8080, which is generally not accessible to other computers on the network.

That web app runs using the Flask framework for the user interface. That app is launched by waitress, which communicates with the app through the WSGI protocol. You can install these with:

pip install Flask waitress

Start the Application Server

You should do this as the lights user. From the source distribution directory, for example /home/lights/bardolph:

python -m web.start_wsgi

If all goes well, you should be able to access the home page.

After a Reboot

Whenever you reboot the computer, you will need to start the WSGI process again. To do so, ssh to the server as user lights and:

cd bardolph
python -m web.start_wsgi

If you are clever enough with Linux, you can probably set up an init script to do this. I’m investigatng this and will update these docs when it’s ready.

By default, Apache is launched when the system boots, so you should not need to manually start that process.

Stopping

This shouldn’t be necessary, but to stop (and, if you want, start) Apache, you can use one of these commands:

sudo systemctl stop apache2
sudo systemctl start apache2
sudo systemctl restart apache2

I don’t have an elegant way to stop the WSGI process, so, as the lights user:

killall python

or if you still have the session open in which the server is running, press Ctrl/C.

Uninstalling

Uninstall with:

pip uninstall bardolph

Aside from that un-install, you can also recursively delete the source tree and the directory containing the virtual environment. . You can also remove the dependencies:

pip uninstall bardolph Flask waitress lifxlan