nginx安装及配置(待续)

Posted AI.℡

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx安装及配置(待续)相关的知识,希望对你有一定的参考价值。

# nginx 基本配置

一、安装

  1. 准备nginx安装包,并放入指定目录中

    nginx-1.13.7.tar.gz
  2. 安装nginx

    安装必要工具

    yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel

    安装nginx(/home/admin/目录下)

    tar -xvf nginx-1.13.7.tar.gz
    cd nginx-1.13.7
    ./configure --prefix=/usr/local/nginx/
    make && make install

二、配置

  1. 修改nginx.conf文件

    添加server

三、启动

  1. 启动nginx

    执行命令

    /usr/local/nginx/sbin/nginx -c /home/admin/nginx-1.13.7/conf/nginx.conf 

四、问题

  1. nginx: [emerg] the "ssl" parameter requires ngx_http_ssl_module

    开启SSL模块,执行命令如下:

    ./configure --prefix=/usr/local/nginx/ --with-http_ssl_module

    覆盖安装

    make && make install

以上是关于nginx安装及配置(待续)的主要内容,如果未能解决你的问题,请参考以下文章

Tengine/Nginx/Openresty性能优化及杂谈(未完待续)

nginx安装及配置详解

linux 安装 nginx 及反向代理配置

Nginx安装及配置

Ubuntu16.04安装及配置nginx

nginx+tomcat环境下,web项目文件上传问题(未完待续)