IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> Nginx系列(二)-配置文件 -> 正文阅读

[系统运维]Nginx系列(二)-配置文件

Nginx系列(二)-配置文件

上一篇: Nginx系列(一)-部署

一、 配置结构划分

1. 下面是默认配置文件移除注释之后的样子.
2. 最外层就是 ·全局· 域,用来配置一些全局参数. ex: worker_processes 
3. 然后就是events模块域: 用来配置工作方式
4. 然后和events平级的http模块域: 
5. http模块域内部有http全局域和server域
6. server域中有server全局域和location域
#user  nginx;
worker_processes  1; #--->这个是最外层

events { # ---这里是第二层
    worker_connections  1024;
}


http { # --->这里是第二层
    include       mime.types;
    default_type  application/octet-stream;
   
    sendfile        on;
    keepalive_timeout  65;

    server { # ----> 这里是第三层
        listen       80;
        server_name  localhost;
      
        location / { # --->这里是第四层
            root   html;
            index  index.html index.htm;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
}

二、 相关配置参数

user nginx; # 这里是用户,需要重新创建,也可以root
worker_processes  1; # 工作进程数,通常设置为CPU核心数或*2
#下面3个是日志记录组
#error_log  logs/error.log; 
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
pid        logs/nginx.pid; # 进程id

events {
    use epoll; #指定工作运行模式,linux下用epoll性能最好
    worker_connections  1024; # 工作连接数,根据自身情况调整
    # 进程的最大连接数受linux系统进程的最大打开文件数限制,再执行·ulimit -n 65536· 
    # 后worker_connections  才能生效
}

#http代理模块
http {
    include       mime.types; # 定义了nginx可以识别的类型
    default_type  application/octet-stream; # 设置默认为二进制流
	
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  logs/access.log  main; # 日志格式和日志记录配置

    sendfile        on;# 开启文件上传和下载功能
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65; # 超时时间配置
    gzip  on;# 开启gzip压缩

	upstream nginxtest{ # 轮询负载组
		server 127.0.0.1:8081;
		server 127.0.0.1:8082;
	}
	upstream nginxtest{ # 权重负载组
		server 127.0.0.1:8081 weight=1;
		server 127.0.0.1:8082 weight=3;
	}
	upstream nginxtest{ # ip_hash负载组,可以和weight搭配使用
		ip_hash;
		server 127.0.0.1:8081 weight=1;
		server 127.0.0.1:8082 weight=3;
	}
	upstream nginxtest{ # 最小连接数负载组,可以和weight搭配使用
		least_conn;
		server 127.0.0.1:8081 weight=1;
		server 127.0.0.1:8082 weight=3;
	}
	#限流,漏铜算法, 10M请求缓存大小, 1r/s 每秒处理1个请求
	limit_req_zone  $binary_remote_addr  zone=nginxtest:10m   rate=1r/s;
    server {
        listen       80; # 监听的端口
        server_name  localhost; # 监听的虚拟主机名称
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
		location / { # 这个是监听到的请求,路由匹配过程.支持正则
            root   html;
            index  index.html index.htm;
        }
        location ~*\.(gif|jpg|png|jepg|bmp)$ { # 本地缓存配置
            expires 3d; #浏览器缓存过期有效期3天
            proxy_set_header Accept-Encoding '';
            root /home/mpeg/nginx # 此目录为根目录,下面if判断就是取这个目录
            proxy_store on; #开启缓存
            proxy_store_access user:rw group:rw all:rw; #表示用户读写权限
            proxy_temp_path /home/mpeg/nginx; # 图片等本地缓存目录
            if(!-e $request_filename){
            	proxy_pass http://127.0.0.1:8081 #这里是要被代理的服务器地址
            }
        }
		location /test { 
            proxy_pass http://nginxtest;#代理转发
            # 访问请求缓存,nodelay打破限流规则来快速处理请求
            limit_req zone=nginxtest burst=5 nodelay; 
            limit_req_status 598; #自定义限流返回状态
            index  index.html index.htm;
            root   html;
        }
		location ~* \.(jpg|gif|png)${  # 动静分离
            proxy_pass http://127.0.0.1:8083;#代理转发
        }
        #error_page  404              /404.html;
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html; # 统一的异常处理页面
        location = /50x.html {
            root   html;
        }
    }
}

三、 总结

本文是博主笔记篇.没有很仔细的介绍相关配置.
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2021-09-05 11:27:40  更:2021-09-05 11:30:22 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 13:56:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码