美文网首页
Nginx安装

Nginx安装

作者: 游园拾忆 | 来源:发表于2018-11-20 11:38 被阅读4次

    解压文件,进入解压后的文件

    tar -zxvf  nginx-1.9.9.tar.gz
    cd /usr/local/nginx-1.9.9
    

    配置参数模块

    ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
    // 等其他所需模块
    

    最后,编译及安装

    make
    make install
    

    启动,测试与停止

    cd /usr/local/nginx/sbin
    // 检查配置
    ./nginx -t
    // 启动
    ./nginx
    // 测试 或 浏览器访问
    curl http://localhost
    // 停止
    ./nginx -s stop
    // 重启
    ./nginx -s reload
    

    相关文章

      网友评论

          本文标题:Nginx安装

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