- Ubuntu Tutorial
- Ubuntu - Home
- Ubuntu - Overview
- Ubuntu - Flavors
- Ubuntu - Environment
- Ubuntu - Device Drivers
- Ubuntu - Software Center
- Ubuntu - Browsers
- Ubuntu - Email
- Ubuntu - Messaging
- Ubuntu - Media Players
- Ubuntu - User Management
- Ubuntu - Files & Folders
- Ubuntu - Word Writer
- Ubuntu - Spreadsheets
- Ubuntu - LibreOffice
- Ubuntu - Command Line
- Ubuntu - Scripting
- Ubuntu - Networking
- Ubuntu - Server Installation
- Ubuntu - Secure Shell
- Ubuntu - Development
- Ubuntu - Nginx
- Ubuntu - Virtual Machines
- Ubuntu - Installing MySQL & Python
- Ubuntu - Node.js
- Ubuntu - Docker
- Ubuntu - On the Cloud
- Ubuntu Useful Resources
- Ubuntu - Quick Guide
- Ubuntu - Useful Resources
- Ubuntu - Discussion
Ubuntu-Nginx
Nginx 是一个比 Apache 轻得多的 Web 服务器。这种网络服务器近年来变得非常流行。Apache Web 服务器的配置和使用可能相当复杂。然而,Nginx 更简单。本章将重点介绍如何安装这个轻型 Web 服务器。
要安装 Nginx,请执行以下步骤 -
步骤 1 - 在 Ubuntu 桌面上打开命令终端并运行以下命令。
sudo apt-get update
这首先确保操作系统上的所有软件包都是最新的。
步骤 2 - 接下来输入以下命令来安装 nginx 服务器。
sudo apt-get install nginx
步骤 3 - 完成后,如果我们运行ps –ef | grep nginx,我们可以看到Web服务器的进程处于运行状态。
现在,我们在 Ubuntu 上将 nginx 作为 Web 服务器运行。