Installing Nginx
Nginx is a high-performance web server used to serve your ColibriPlus application in production or development environments.
We strongly recommend using Nginx to serve your ColibriPlus application instead of Apache or other web servers.
This guide covers installation and basic configuration for a ColibriPlus project.
1. Install Nginx
Ubuntu / Debian
bash
sudo apt update
sudo apt install nginx
sudo systemctl enable nginx
sudo systemctl start nginx
CentOS / RHEL
bash
sudo yum install nginx
sudo systemctl enable nginx
sudo systemctl start nginx
macOS
bash
brew install nginx
sudo brew services start nginx
sudo brew services restart nginx
Test Nginx
bash
sudo nginx -t
If everything above is done correctly, your nginx will be installed and running on your server.