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 nginxCentOS / RHEL
bash
sudo yum install nginx
sudo systemctl enable nginx
sudo systemctl start nginxmacOS
bash
brew install nginx
sudo brew services start nginx
sudo brew services restart nginxTest Nginx
bash
sudo nginx -tIf everything above is done correctly, your nginx will be installed and running on your server.
