]> git.pld-linux.org Git - packages/syslog-ng.git/blame - syslog-ng.conf
- start after nfsfs
[packages/syslog-ng.git] / syslog-ng.conf
CommitLineData
8f811463 1@version: 3.0
9bb5922e 2#
e8348a61 3# Syslog-ng configuration for PLD Linux
9bb5922e 4#
e8348a61 5# See syslog-ng(8) and syslog-ng.conf(5) for more information.
9bb5922e 6#
7
e8348a61 8options {
641e857d 9 flush_lines(0);
e8348a61
JR
10 owner(root);
11 group(logs);
12 perm(0640);
641e857d
JR
13 create_dirs(yes);
14 dir_owner(root);
15 dir_group(logs);
16 dir_perm(0750);
17 stats_freq(3600);
18 time_reopen(10);
19 time_reap(360);
20 mark_freq(600);
21 log_fifo_size(2048);
e8348a61
JR
22};
23
24source s_sys {
ca352cc2 25 file ("/proc/kmsg" program_override("kernel"));
6999305b 26 unix-stream("/dev/log" max-connections(1000));
e8348a61 27 internal();
e8348a61 28};
9bb5922e 29
bc57df04 30# uncomment the line below if you want to setup syslog server
e8348a61 31#source s_net { udp(); };
69f7f14f 32
d241bcb3
AM
33#destination d_loghost { udp("loghost" port(514)); };
34
35destination d_kern { file("/var/log/kernel"); };
36destination d_messages { file("/var/log/messages"); };
37destination d_authlog { file("/var/log/secure"); };
38destination d_mail { file("/var/log/maillog"); };
39destination d_uucp { file("/var/log/spooler"); };
40destination d_debug { file("/var/log/debug"); };
41destination d_cron { file("/var/log/cron" owner(root) group(crontab) perm(0660)); };
42destination d_syslog { file("/var/log/syslog"); };
43destination d_daemon { file("/var/log/daemon"); };
44destination d_lpr { file("/var/log/lpr"); };
45destination d_user { file("/var/log/user"); };
46destination d_ppp { file("/var/log/ppp"); };
47destination d_ftp { file("/var/log/xferlog"); };
48destination d_audit { file("/var/log/audit"); };
49destination d_postgres { file("/var/log/pgsql"); };
50destination d_freshclam { file("/var/log/freshclam.log"); };
e8348a61
JR
51
52# Log iptables messages to separate file
d241bcb3 53destination d_iptables { file("/var/log/iptables"); };
e8348a61 54
d241bcb3
AM
55destination d_console { usertty("root"); };
56#destination d_console_all { file("/dev/tty12"); };
69f7f14f 57
d241bcb3 58destination d_xconsole { pipe("/dev/xconsole"); };
69f7f14f 59
d241bcb3
AM
60destination d_newscrit { file("/var/log/news/news.crit" owner(news) group(news)); };
61destination d_newserr { file("/var/log/news/news.err" owner(news) group(news)); };
62destination d_newsnotice { file("/var/log/news/news.notice" owner(news) group(news)); };
69f7f14f 63
e8348a61 64# Filters for standard syslog(3) facilities
87578fa1 65#filter f_audit { facility(audit); };
e8348a61 66filter f_authpriv { facility(authpriv, auth); };
bc57df04 67filter f_cron { facility(cron); };
69f7f14f 68filter f_daemon { facility(daemon); };
e8348a61 69filter f_ftp { facility(ftp); };
bc57df04 70filter f_kern { facility(kern); };
69f7f14f
JR
71filter f_lpr { facility(lpr); };
72filter f_mail { facility(mail); };
e8348a61
JR
73filter f_news { facility(news); };
74filter f_syslog { facility(syslog); };
69f7f14f 75filter f_user { facility(user); };
e4b58b62 76filter f_uucp { facility(uucp); };
e8348a61
JR
77filter f_local0 { facility(local0); };
78filter f_local1 { facility(local1); };
79filter f_local2 { facility(local2); };
80filter f_local3 { facility(local3); };
81filter f_local4 { facility(local4); };
82filter f_local5 { facility(local5); };
83filter f_local6 { facility(local6); };
84filter f_local7 { facility(local7); };
85
c1e06d27 86# Filters for standard syslog(3) priorities
69f7f14f
JR
87filter p_debug { level(debug); };
88filter p_info { level(info); };
89filter p_notice { level(notice); };
90filter p_warn { level(warn); };
91filter p_err { level(err); };
92filter p_alert { level(alert); };
93filter p_crit { level(crit); };
94filter p_emergency { level(emerg); };
95
e8348a61
JR
96# Additional filters for specific programs/use
97filter f_freshclam { program(freshclam); };
98filter f_ppp { program(pppd) or program(chat); };
99filter f_postgres { program(postgres); };
17cfc336 100filter f_iptables { match("IN=[A-Za-z0-9\.]* OUT=[A-Za-z0-9\.]*" value("MESSAGE")); };
e8348a61 101
d241bcb3
AM
102log { source(s_sys); filter(f_authpriv); destination(d_authlog); };
103log { source(s_sys); filter(f_cron); destination(d_cron); };
104log { source(s_sys); filter(f_daemon); destination(d_daemon); };
105log { source(s_sys); filter(f_ftp); destination(d_ftp); };
106log { source(s_sys); filter(f_kern); destination(d_kern); };
107log { source(s_sys); filter(f_lpr); destination(d_lpr); };
108log { source(s_sys); filter(f_mail); destination(d_mail); };
109log { source(s_sys); filter(f_news); filter(p_crit); destination(d_uucp); };
110log { source(s_sys); filter(f_news); filter(p_crit); destination(d_newscrit); };
111log { source(s_sys); filter(f_news); filter(p_err); destination(d_newserr); };
112log { source(s_sys); filter(f_news); filter(p_warn); destination(d_newsnotice); };
113log { source(s_sys); filter(f_news); filter(p_notice); destination(d_newsnotice); };
114log { source(s_sys); filter(f_news); filter(p_info); destination(d_newsnotice); };
115log { source(s_sys); filter(f_news); filter(p_debug); destination(d_newsnotice); };
116log { source(s_sys); filter(f_syslog); destination(d_syslog); };
117log { source(s_sys); filter(f_user); destination(d_user); };
118log { source(s_sys); filter(f_uucp); destination(d_uucp); };
119
120log { source(s_sys); filter(p_debug); destination(d_debug); };
121
122log { source(s_sys); filter(f_daemon); filter(f_ppp); destination(d_ppp); };
123log { source(s_sys); filter(f_local6); filter(f_freshclam); destination(d_freshclam); };
124log { source(s_sys); filter(f_local0); filter(f_postgres); destination(d_postgres); };
125#log { source(s_sys); filter(f_iptables); destination(d_iptables); };
126
127log { source(s_sys); filter(p_emergency); destination(d_console); };
128#log { source(s_sys); destination(d_console_all); };
bc57df04
JB
129
130# This is a catchall statement, and should catch all messages which were not
87578fa1 131# accepted any of the previous statements.
d241bcb3 132log { source(s_sys); destination(d_messages); flags(fallback); };
e8348a61 133
87578fa1 134# Network syslogging
d241bcb3 135#log { source(s_sys); destination(d_loghost); };
This page took 0.126739 seconds and 4 git commands to generate.