~dricottone/container-images

ref: 86834e13c4e225b499700ba57267b6d8caa418ac container-images/syslog-ng/syslog-ng.conf -rw-r--r-- 232 bytes
86834e13Dominic Ricottone MoinMoin 1.9 running in PyPy a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@version: 4.7

source src_inet {
  network(transport("udp") port(514));
  network(transport("tcp") port(601));
};

destination dest_file {
  file("/var/log/received.log");
};

log {
  source(src_inet);
  destination(dest_file);
};