Fork me on GitHub
摘要: 一、是否启动aio功能,默认为off aio on | off | threads[=pool]; 异步IO,可以优化为on 二、当文件大于等于给定大小时,同步(直接)写磁盘,而非写缓存,默认off directio 8m; 当文件大小达到8兆,就不缓存,直接写到磁盘中了 三、示例 location 阅读全文
posted @ 2021-05-31 19:20 Alex-Lzy 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 一、限制响应给客户端的传输速率,单位是bytes/second默认值0表示无限制 limit_rate rate; 语境:http, server, location,if in location 1、生成一百兆的文件 dd if=/dev/zero of=test.img bs=1M count= 阅读全文
posted @ 2021-05-31 19:15 Alex-Lzy 阅读(207) 评论(0) 推荐(0) 编辑
摘要: keepalive长连接 设定保持连接超时时长,0表示禁止长连接,默认为75s示例:在响应头显示此首部字段 在nginx的默认配置中写的是65 vim /etc/nginx/nginx.conf keepalive_timeout 65; 可以按照实际需求设置长短 一、对外显示keeplive值 1 阅读全文
posted @ 2021-05-31 18:29 Alex-Lzy 阅读(2894) 评论(0) 推荐(0) 编辑
摘要: 访问网页不存在显示默认网页 一、修改配置 vim /etc/nginx/conf.d/test.conf 或者 vim /etc/nginx/nginx.conf server { server_name www.a.net; root /data/site1; location /about { 阅读全文
posted @ 2021-05-31 16:41 Alex-Lzy 阅读(2492) 评论(0) 推荐(0) 编辑
摘要: 1、定义错误页面 server { server_name www.a.net; root /data/site1; location /about { root /opt/testdir/; index test.html; } error_page 404 /404.html; location 阅读全文
posted @ 2021-05-31 15:49 Alex-Lzy 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 1、修改nginx 配置 vim /etc/nginx/nginx.conf 或修改同样有效的这个文件夹下的任意conf结尾的文件 vim /etc/nginx/conf.d/*.conf 2、将状态码进行修改,将404修改为200 server { server_name www.a.net; r 阅读全文
posted @ 2021-05-31 15:10 Alex-Lzy 阅读(329) 评论(0) 推荐(0) 编辑