Nginx 安装与部署

Nginx 安装与部署

一 准备

  • 腾讯云服务器/centos7系统
  • Nginx:nginx-1.13.1

二 安装

Nginx依赖

  • gcc、gcc-c++
    yum install gcc
    yum install gcc-c++
  • pcre、zlib
    yum -y install pcre*
    yum -y install zlib*
  • openssl
    yum -y install openssl
    yum -y install openssl-devel

Nginx安装

  • 下载Nginx安装包
    wget http://nginx.org/download/nginx-1.13.1.tar.gz
  • 解压
    tar -z -xv -f nginx-1.13.1.tar.gz
  • 配置
cd nginx-1.13.1
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module --with-pcre

tips:
–prefix:设置安装路径
–with-http_stub_status_module:支持nginx状态查询
–with-http_ssl_module:支持https
–with-pcre:为了支持rewrite重写功能,必须制定pcre

  • 编译
make
make install

tip:
make install 这条指令需要当前文件夹下有Makefile才能成功
在这里插入图片描述

  • 启动
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
  • 测试
    访问http://ip/
    Nginx 安装与部署_第1张图片
    到此Nginx已经安装完成,下一篇文章Nginx 多域名绑定

你可能感兴趣的:(Nginx 安装与部署)