]> git.pld-linux.org Git - packages/syslog-ng.git/blob - syslog-ng.conf
- syntax errors
[packages/syslog-ng.git] / syslog-ng.conf
1 #
2 # Syslog-ng configuration for PLD Linux
3 #
4 # See syslog-ng(8) and syslog-ng.conf(5) for more information.
5 #
6
7 options {
8         long_hostnames(off);
9         sync(0);
10         owner(root);
11         group(logs);
12         perm(0640);
13 };
14
15 source s_sys    {
16         pipe ("/proc/kmsg" log_prefix("kernel: "));
17         unix-stream("/dev/log" max_connections(1000));
18         internal();
19 };
20
21 # uncomment the line below if you want to setup syslog server
22 #source s_net   { udp(); };
23
24 #destination loghost    { udp("loghost" port(514)); };
25
26 destination kern        { file("/var/log/kernel"); };
27 destination messages    { file("/var/log/messages"); };
28 destination authlog     { file("/var/log/secure"); };
29 destination mail        { file("/var/log/maillog"); };
30 destination uucp        { file("/var/log/spooler"); };
31 destination debug       { file("/var/log/debug"); };
32 destination cron        { file("/var/log/cron" owner(root) group(crontab) perm(0660)); };
33 destination syslog      { file("/var/log/syslog"); };
34 destination daemon      { file("/var/log/daemon"); };
35 destination lpr         { file("/var/log/lpr"); };
36 destination user        { file("/var/log/user"); };
37 destination ppp         { file("/var/log/ppp"); };
38 destination ftp         { file("/var/log/xferlog"); };
39 destination audit       { file("/var/log/audit"); };
40 destination postgres    { file("/var/log/pgsql"); };
41 destination freshclam   { file("/var/log/freshclam.log"); };
42
43 # Log iptables messages to separate file
44 destination iptables    { file("/var/log/iptables"); };
45
46 destination console     { usertty("root"); };
47 #destination console_all        { file("/dev/tty12"); };
48
49 destination xconsole    { pipe("/dev/xconsole"); };
50
51 destination newscrit    { file("/var/log/news/news.crit" owner(news) group(news)); };
52 destination newserr     { file("/var/log/news/news.err" owner(news) group(news)); };
53 destination newsnotice  { file("/var/log/news/news.notice" owner(news) group(news)); };
54
55 # Filters for standard syslog(3) facilities
56 #filter f_audit         { facility(audit); };
57 filter f_authpriv       { facility(authpriv, auth); };
58 filter f_cron           { facility(cron); };
59 filter f_daemon         { facility(daemon); };
60 filter f_ftp            { facility(ftp); };
61 filter f_kern           { facility(kern); };
62 filter f_lpr            { facility(lpr); };
63 filter f_mail           { facility(mail); };
64 filter f_news           { facility(news); };
65 filter f_syslog         { facility(syslog); };
66 filter f_user           { facility(user); };
67 filter f_uucp           { facility(uucp); };
68 filter f_local0         { facility(local0); };
69 filter f_local1         { facility(local1); };
70 filter f_local2         { facility(local2); };
71 filter f_local3         { facility(local3); };
72 filter f_local4         { facility(local4); };
73 filter f_local5         { facility(local5); };
74 filter f_local6         { facility(local6); };
75 filter f_local7         { facility(local7); };
76
77 # Filters for standard syslog(3) priorities
78 filter p_debug          { level(debug); };
79 filter p_info           { level(info); };
80 filter p_notice         { level(notice); };
81 filter p_warn           { level(warn); };
82 filter p_err            { level(err); };
83 filter p_alert          { level(alert); };
84 filter p_crit           { level(crit); };
85 filter p_emergency      { level(emerg); };
86
87 # Additional filters for specific programs/use
88 filter f_freshclam      { program(freshclam); };
89 filter f_ppp            { program(pppd) or program(chat); };
90 filter f_postgres       { program(postgres); };
91 filter f_iptables       { match("IN=[A-Za-z0-9]* OUT=[A-Za-z0-9]*"); };
92
93 log { source(s_sys); filter(f_authpriv);        destination(authlog); };
94 log { source(s_sys); filter(f_cron);            destination(cron); };
95 log { source(s_sys); filter(f_daemon);          destination(daemon); };
96 log { source(s_sys); filter(f_ftp);             destination(ftp); };
97 log { source(s_sys); filter(f_kern);            destination(kern); };
98 log { source(s_sys); filter(f_lpr);             destination(lpr); };
99 log { source(s_sys); filter(f_mail);                    destination(mail); };
100 log { source(s_sys); filter(f_news); filter(p_crit);    destination(uucp); };
101 log { source(s_sys); filter(f_news); filter(p_crit);    destination(newscrit); };
102 log { source(s_sys); filter(f_news); filter(p_err);     destination(newserr); };
103 log { source(s_sys); filter(f_news); filter(p_warn);    destination(newsnotice); };
104 log { source(s_sys); filter(f_news); filter(p_notice);  destination(newsnotice); };
105 log { source(s_sys); filter(f_news); filter(p_info);    destination(newsnotice); };
106 log { source(s_sys); filter(f_news); filter(p_debug);   destination(newsnotice); };
107 log { source(s_sys); filter(f_syslog);          destination(syslog); };
108 log { source(s_sys); filter(f_user);            destination(user); };
109 log { source(s_sys); filter(f_uucp);            destination(uucp); };
110
111 log { source(s_sys); filter(p_debug);           destination(debug); };
112
113 log { source(s_sys); filter(f_daemon); filter(f_ppp);           destination(ppp); };
114 log { source(s_sys); filter(f_local6); filter(f_freshclam);     destination(freshclam); };
115 log { source(s_sys); filter(f_local0); filter(f_postgres);      destination(postgres); };
116 #log { source(s_sys); filter(f_iptables);       destination(iptables); };
117
118 log { source(s_sys); filter(p_emergency);       destination(console); };
119 #log { source(s_sys); destination(console_all); };
120
121 #  This is a catchall statement, and should catch all messages which were not
122 #  accepted any of the previous statements.
123 log { source(s_sys); destination(messages); flags(fallback); };
124
125 # Network syslogging
126 #log { source(s_sys); destination(loghost); };
This page took 0.084132 seconds and 3 git commands to generate.