syslog-ng.conf 391 B

12345678910111213141516171819202122
  1. @version: 4.5
  2. @include "scl.conf"
  3. options {
  4. chain_hostnames(off);
  5. flush_lines(0);
  6. use_dns(no);
  7. use_fqdn(no);
  8. owner("root"); group("adm"); perm(0640);
  9. stats(freq(0));
  10. keep_timestamp(no);
  11. bad_hostname("^gconfd$");
  12. };
  13. source s_dgram {
  14. unix-dgram("/dev/log");
  15. internal();
  16. };
  17. destination d_stdout { pipe("/dev/stdout"); };
  18. log {
  19. source(s_dgram);
  20. destination(d_stdout);
  21. };