博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
12.10 Nginx访问日志;12.11 Nginx日志切割;12.12 静态文件不记录日志和过期时间
阅读量:6306 次
发布时间:2019-06-22

本文共 2217 字,大约阅读时间需要 7 分钟。

12.10 Nginx访问日志

1. 编辑...nginx.conf主配置文件,自定义日志格式名称

[root@hao-01 conf]# vim /usr/local/nginx/conf/nginx.conf

更改内容(定义日志格式名字)

log_format hao $remote_addr(日志格式)

spacer.gif

nginx日志格式:

spacer.gif2. 定义test.com虚拟主机配置文件(增加访问日志项):

[root@hao-01 vhost]# vim /usr/local/nginx/conf/vhost/test.com.conf

增加内容(访问日志,存储位置,格式名称,分号为结束符号)

access_log /tmp/test.com.log hao;

spacer.gif3. 检测nginx配置文件是否有错?

[root@hao-01 default]# /usr/local/nginx/sbin/nginx -t

4. 重新加载nginx配置文件(非重启!):

[root@hao-01 default]# /usr/local/nginx/sbin/nginx -s reload

5. curl 访问test.com网站地址:

[root@hao-01 ~]# curl -x127.0.0.1:80 test2.com/admin/index.html

6. curl 访问test.com网站地址:

[root@hao-01 ~]# curl -x127.0.0.1:80 test3.com/admin/index.html

7. 查看test.com主机(网站)的访问日志内容:

[root@hao-01 ~]# cat /tmp/test.com.log

spacer.gif

12.11 Nginx日志切割

1. 编写一个日志切割shell脚本

[root@hao-01 ~]# vim /usr/local/sbin/nginx_log_rotate.sh

脚本内容:

#! /bin/bash

d=`date -d "-1 day" +%Y%m%d`

logdir="/tmp/"

nginx_pid="/usr/local/nginx/logs/nginx.pid"

cd $logdir

for log in `ls *.log`

do

    mv $log $log-$d

done

/bin/kill -HUP `cat $nginx_pid`

spacer.gif

2. 执行日志切割shell脚本

[root@hao-01 ~]# sh -x /usr/local/sbin/nginx_log_rotate.sh

3. 查看/tmp/目录下,匹配含有.log文件(这里指日志文件)

[root@hao-01 ~]# ls /tmp/*.log*

spacer.gif

4. 删除(定期清理老日志)/tmp/目录下,匹配大于10天含有.log-日志文件: [root@hao-01 ~]# find /tmp/ -name *.log-* -type f -mtime +10 |xargs rm

5. 把切割nginx日志脚本加入任务计划设定每天凌晨零点执行一次

[root@hao-01 ~]# crontab -e

spacer.gif

12.12 静态文件不记录日志和过期时间

1. 编辑test.com虚拟主机配置文件(设定日志过滤静态文件和缓存静态文件时间):  [root@hao-01 ~]# vim /usr/local/nginx/conf/vhost/test.com.conf

增加内容(日志过滤静态文件和缓存静态文件时间)

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$

{

expires 7d;

access_log off;

}

location ~ .*\.(js|css)$

{

expires 12h;

access_log off;

}

spacer.gif2. 检测nginx配置文件是否有错?

[root@hao-01 default]# /usr/local/nginx/sbin/nginx -t

3. 重新加载nginx配置文件(非重启!):

[root@hao-01 default]# /usr/local/nginx/sbin/nginx -s reload

4. 进入test.com网站目录下:

[root@hao-01 ~]# cd /data/wwwroot/test.com/

5. 创建一些以.jpg .png .js格式静态文件

[root@hao-01 test.com]# touch /data/wwwroot/test.com/1.jpg 2.png 3.js

spacer.gif6. curl访问 test.com网站下1.jpg静态格式文件

[root@hao-01 test.com]# curl -x127.0.0.1:80 test.com/1.jpg -I

7. 查看test.com网站的访问日志,看看是否有记录静态格式文件访问???  [root@hao-01 test.com]# cat /tmp/test.com.log 

本文转自 主内安详 51CTO博客,原文链接:http://blog.51cto.com/zhuneianxiang/1955398,如需转载请自行联系原作者
你可能感兴趣的文章
Spring.Net+WCF实现分布式事务
查看>>
在Linux上高效开发的7个建议
查看>>
java数据结构 - 数组使用的代码
查看>>
个人简历-项目经验
查看>>
swoole异步任务task处理慢请求简单实例
查看>>
DHCP
查看>>
oracle数据泵导入分区表统计信息报错(四)
查看>>
spring技术内幕读书笔记之IoC容器的学习
查看>>
细说多线程(五) —— CLR线程池的I/O线程
查看>>
JavaScript instanceof和typeof的区别
查看>>
Hadoop文件系统详解-----(一)
查看>>
《面向模式的软件体系结构2-用于并发和网络化对象模式》读书笔记(8)--- 主动器...
查看>>
状态码
查看>>
我的友情链接
查看>>
用sqlplus远程连接oracle命令
查看>>
多年一直想完善的自由行政审批流程组件【2002年PHP,2008年.NET,2010年完善数据设计、代码实现】...
查看>>
自动生成四则运算题目
查看>>
【翻译】使用新的Sencha Cmd 4命令app watch
查看>>
【前台】【单页跳转】整个项目实现单页面跳转,抛弃iframe
查看>>
因为你是前端程序员!
查看>>