]> git.pld-linux.org Git - packages/syslog-ng.git/blob - syslog-ng-simple.conf
- package remaining files:
[packages/syslog-ng.git] / syslog-ng-simple.conf
1 @version: 3.5
2 #
3 # Syslog-ng configuration for PLD Linux
4 #
5 # See syslog-ng(8) and syslog-ng.conf(5) for more information.
6 #
7
8 options {
9         flush_lines(0);
10         owner(root);
11         group(logs);
12         perm(0640);
13         create_dirs(yes);
14         dir_owner(root);
15         dir_group(logs);
16         dir_perm(0750);
17         stats_freq(43200);
18         time_reopen(10);
19         time_reap(360);
20         mark_freq(600);
21         threaded(yes);
22 };
23
24 source s_sys    {
25         file ("/proc/kmsg" program_override("kernel"));
26         unix-stream("/dev/log" max-connections(1000) log_iw_size(100000));
27 # if using systemd, comment out the line above, and uncomment line below
28 #       unix-dgram("/run/systemd/journal/syslog");
29         internal();
30 };
31
32 destination d_mail        { file("/var/log/maillog"); };
33 destination d_messages    { file("/var/log/messages"); };
34 destination d_kern        { file("/var/log/kernel"); };
35 destination d_console_all { file("/dev/tty12"); };
36
37 # if using systemd, an IP address instead of name may be required here
38 #destination d_loghost  { udp("loghost" port(514)); };
39
40 filter f_kern             { facility(kern); };
41 filter f_mail             { facility(mail); };
42
43 log { source(s_sys); filter(f_kern); destination(d_kern); };
44 log { source(s_sys); filter(f_mail); destination(d_mail); };
45
46 # This is a catchall statement, and should catch all messages which were not
47 # accepted any of the previous statements.
48 # If using d_console_all or network logging, remove flags(fallback);
49 log { source(s_sys); destination(d_messages); flags(fallback); };
50 #log { source(s_sys); destination(d_messages); };
51
52 # Log all messages to tty12
53 #log { source(s_sys); destination(d_console_all); };
54
55 # Network syslogging
56 #log { source(s_sys); destination(d_loghost); };
This page took 0.060124 seconds and 3 git commands to generate.