CentOS 7 - 安装Nginx

作者: 罗伊德666 | 来源:发表于2018-09-13 12:24 被阅读3次

    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

        本文链接:https://www.haomeiwen.com/subject/sfdwgftx.html