Overview
Nginx is a high-performance HTTP and reverse proxy server widely used for load balancing, static asset serving, and SSL termination.
1. Installation and Basic Configuration
1.1 Install Nginx (Ubuntu)
# Update system
sudo apt-get update
# Install Nginx
sudo apt-get install -y nginx
# Start service
sudo systemctl start nginx
sudo systemctl enable nginx
# Verify installation
nginx -v
7/1/24About 3 min