Skip to content

Installing Nginx

Nginx is a powerful server that can be installed on a Raspberry Pi® and used as a reverse proxy for Endrpi.

Installation#

1. Install system updates#
sudo apt update
2. Install Nginx#
sudo apt-get nginx

Verify Nginx is running#

Automatically Running

Nginx should start running automatically after the installation.

To verify Nginx is running, run the following command:

systemctl status nginx --no-pager

The output should contain the status ● active (running) with some additional information.

Additionally, http://localhost should now show the default Nginx HTML page.