CentOS 7 - 安装Nginx
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7 - 安装Nginx相关的知识,希望对你有一定的参考价值。
nginx是一个高性能的Web服务软件。相比Apache HTTP Server更加的轻量级和灵活,是在WEB及服务端开发中必不可少的工具。
本文我们将介绍CentOS 7下Nginx的安装。
- 添加仓库
sudo yum install epel-release
- 安装Nginx
sudo yum install nginx
- 启动Nginx
sudo systemctl start nginx
- 如果系统使用了防火墙(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 部署