freehzw 发表于 2012-6-23 13:06:56

当初禁用了日志,现在想启用日志,怎么修改 conf配置

当初在建立虚拟主机时,禁用了日志的生成,现在网站负载一直居高波动,想看一下日志,我查看 虚拟主机的conf文件里: access_logoff; 要怎样修改一下,才能使虚拟主机生成日志文件?

licess 发表于 2012-6-23 13:22:12

禁用的日志只是访问日志
虚拟配置文件里加上
                log_format域名'$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';

access_logoff; 替换为access_log/home/wwwlogs/域名.log域名;

freehzw 发表于 2012-6-23 15:16:44

多谢回复。

不过,我在 vhost/域名.conf 文件里,只改了一句 access_log/home/wwwlogs/域名.log域名; 并没有加上 log_format域名'$remote_addr - $remote_user [$time_local] "$request" '
            '$status $body_bytes_sent "$http_referer" '
            '"$http_user_agent" $http_x_forwarded_for'; 等这些语句,但看起来, 日志文件也是能正常生成的,这有什么区别吗?

licess 发表于 2012-6-23 17:24:59

这是日志格式

ullivr 发表于 2017-12-11 14:58:01

请问Nginx和Apache都是这么开启日志吗?

licess 发表于 2017-12-12 14:32:40

lnmp vhost add 时会提示,要不就按前面方法自己改
页: [1]
查看完整版本: 当初禁用了日志,现在想启用日志,怎么修改 conf配置