postfix/rootfs/etc/syslog-ng/syslog-ng.conf

25 lines
331 B
Plaintext
Raw Normal View History

2017-02-14 13:23:52 +00:00
@version: 3.7
options {
stats_freq (0);
time_reopen (10);
chain_hostnames (off);
use_dns (no);
use_fqdn (no);
keep_hostname (yes);
};
source s_local {
unix-dgram("/dev/log");
internal();
};
2017-02-14 12:44:41 +00:00
destination catchall {
2017-02-14 13:23:52 +00:00
pipe("/dev/stdout");
2017-02-14 12:44:41 +00:00
};
log {
2017-02-14 13:23:52 +00:00
source(s_local);
2017-02-14 12:44:41 +00:00
destination(catchall);
};