美文网首页
[centos] 安装 NGINX

[centos] 安装 NGINX

作者: krmao | 来源:发表于2019-04-29 17:24 被阅读0次

    1 安装

    yum install nginx
    

    2 启动

    systemctl status nginx 
    // or
    service nginx start
    

    [图片上传中...(image.png-ad0bb7-1556529207026-0)]

    3 查看运行状态

    systemctl status nginx 
    // or
    service nginx status
    
    image.png

    4 配置 nginx

    vi /etc/nginx/nginx.conf
    

    配置一个服务(默认服务)

        server {
            listen       80 default_server;         # 配置一个服务 端口 0
            listen       [::]:80 default_server;    # 配置一个服务 端口 1
            server_name  wedding;                   # 配置一个服务 名称
            root         /home/webapps/wedding;     # 配置一个服务 本地网站地址(不配的话默认打开 nginx 默认首页)
    

    重启 nginx

    systemctl restart nginx
    

    5 开启阿里云ECS 80 端口

    image.png

    6 阿里云外网访问

    直接输入阿里云外网直接访问


    image.png

    7 其它命令

    systemctl start nginx  #启动
    systemctl stop nginx #停止
    systemctl restart nginx  #重启
    systemctl status nginx #查看运行状态
    systemctl enable nginx #开机启动
    nginx -v  #查看nginx版本号
    service nginx reload #重新加载配置文件
    vi  /etc/nginx/conf.d/default.conf  #打开配置文件
    

    参考链接

    相关文章

      网友评论

          本文标题:[centos] 安装 NGINX

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