CentOS 7 - 安装Nginx

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 - 安装Nginx相关的知识,希望对你有一定的参考价值。

nginx是一个高性能的Web服务软件。相比Apache HTTP Server更加的轻量级和灵活,是在WEB及服务端开发中必不可少的工具。

本文我们将介绍CentOS 7下Nginx的安装。

  1. 添加仓库
sudo yum install epel-release
  1. 安装Nginx
sudo yum install nginx
  1. 启动Nginx
sudo systemctl start nginx
  1. 如果系统使用了防火墙(firewall),执行下面命令允许http/https
sudo firewall-cmd --permanent --zone=public --add-service=http 
sudo firewall-cmd --permanent --zone=public --add-service=https
sudo firewall-cmd --reload

以上是关于CentOS 7 - 安装Nginx的主要内容,如果未能解决你的问题,请参考以下文章

CentOS Linux release 7 Nginx 部署

CentOS Linux release 7 Nginx 部署

[CentOS 7] 安装nginx

centos 7 源码方式安装nginx(1.16.1) + ssl + 阿里证书配置

[CentOS 7] 安装nginx

CentOS 7 yum 安装 Nginx