事情源自这么一种场景:
nginx
以_www
用户运行,日志文件access.log
等的权限皆为:
_www _www rw-------
而我现在需要让另一用户读取该文件,所以我希望能够指定日志文件的权限。而我经过搜索没有发现nginx
提供这种配置,十分困惑。
求指教。
给我你的怀抱2017-05-16 17:23:43
cat /etc/logrotate.d/nginx
/var/log/nginx/*.log {
daily
missingok
rotate 52
compress
delaycompress
notifempty
create 644 nginx root
sharedscripts
postrotate
[ -f /var/run/nginx.pid ] && kill -USR1 `cat /var/run/nginx.pid`
endscript
}
日志滚动配置里改