美文网首页
Nginx安装、配置及使用

Nginx安装、配置及使用

作者: 深吸一口气 | 来源:发表于2021-05-20 09:12 被阅读0次

1、安装

gcc安装

安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境

yum -y install gcc-c++

PCRE pcre-devel安装

PCRE(Perl Compatible Regular Expressions)是一个Perl库,包括Perl兼容的正则表达式库

nginx的http模块使用pcre来解析正则表达式,所以需要安装pcre库,pcre-devel是使用pcre开发的一个二次开发库

yum -y install pcre pcre-devel

zlib安装

zlib库提供了很多种压缩和解压缩的方式,nginx使用zlib对http包的内容进行gzip

yum -y install zlib zlib-devel

openssl安装

openssl是一个强大的安全套接字层密码库,囊括主要的密码算法、常用的密钥和证书封装管理功能及SSL协议,并提供丰富的应用程序供测试或其他目的使用

nginx不仅支持http协议,还支持https(即在SSL协议上传输http)

yum -y install openssl openssl-devel

安装nginx

# 官网下载
https://nginx.org/en/download.html
# 使用wget命令下载
wget https://nginx.org/download/nginx-1.15.12.tar.gz

# 解压缩
tar -zxvf nginx-1.15.12.tar.gz

# 配置
./configure --prefix=/usr/local/nginx --with-http_ssl_module

# 编译
make

# 安装
make install

2、配置

nginx配置文件默认为nginx安装目录内的config目录内的nginx.conf文件

2.1、nginx文件结构

# 全局块
···

# events块
events {
    ···
}

# http块
http {
        # http全局块
        ···
        # server块
        server {
                # server全局块
                ···
                # location块
                location [PATTERN] {
                    ···
                }
                location [PATTERN] {
                    ···
                }
        }
        server {
                ···
        }
        # http全局块
        ···
}

全局块:配置影响nginx全局的指令,一般有运行nginx服务器的用户组,nginx进程pid存放路径,日志存放路径,配置文件引入,允许生成worker process数等;

events块:配置影响nginx服务器或与用户的网络连接,有每个进程的最大连接数,选取哪种事件驱动模型处理连接请求,是否允许同时接受多个网络连接,开启多个网络连接序列化等;

http块:可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块配置,如文件引入,mime-type定义,日志自定义,是否使用sendfile传输文件,连接超时时间,单链接请求数等;

server块:配置虚拟主机的相关参数,一个http中可以有多个server;

location块:配置请求的路由,以及各种页面的处理情况;

2.2、配置示例

### 每个指令必须有分号结束 ###

# 配置用户或者组,默认为nobody nobody
#user administrator administrators;

# 允许生成的进程数,默认为1
#worker_process 2;

# 指定nginx进程文件存放地址
#pid /nginx/pid/nginx.pid;

# 指定日志路径,级别。这个设置可以放入全局模块、http块、server块,级别依次为:debug|info|notice|warn|error|crit|alert|emerg
error_log log/error.log debug;

events {
        # 设置网络连接序列化,防止惊群现象发生,默认为on
        accept_mutex on;
        # 设置一个进程是否同时接受多个网络连接,默认为off
        multi_accept off;
        # 时间驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
        #use epoll;
        # 最大连接数,默认为512
        worker_connections 512
}

http {
        # 文件扩展名与文件类型映射表
        include     mime.types;
        # 默认文件类型,默认为text/plain
        default_type        text/plain;
        # 取消日志服务
        #access_log     off;
        # 自定义日志格式
        log_format      myFormat        "$remote_addr–$remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for";
        # combined为日志格式的默认值
        access_log      log/access.log      myFormat;
        
}

3、基础命令

# 默认方式启动
./sbin/nginx

# 指定配置文件启动
./sbin/nginx -c /usr/local/nginx/conf/nginx.config

# 指定nginx程序目录启动
./sbin/nginx -p /usr/local/nginx/

#快速停止
./sbin/nginx -s stop

# 优雅停止(会等当前的请求先处理完再杀死)
./sbin/nginx -s quit

# 热装载配置文件
./sbin/nginx -s reload

# 重新打开日志文件
./sbin/nginx -s reopen

# 检测配置是否正确
./sbin/nginx -t

相关文章

网友评论

      本文标题:Nginx安装、配置及使用

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