Installation in Nginx

From the Nginx cheat sheet · Installation & Basic Commands · verified Jul 2026

Installation

Installing Nginx on different platforms

bash
# Ubuntu/Debian
sudo apt update
sudo apt install nginx

# CentOS/RHEL/Fedora
sudo yum install nginx

# macOS with Homebrew
brew install nginx

# Check version
nginx -v
🚀 Lightweight and high-performance web server
📦 Available in most package managers
🔧 Modular architecture with dynamic modules
⚡ Default config at /etc/nginx/nginx.conf

More Nginx tasks

Back to the full Nginx cheat sheet