~dricottone/container-images

ref: 42b7156724b85db142513ae658a6584349aac0f6 container-images/syslog-ng/syslog-ng.conf -rw-r--r-- 232 bytes
42b71567Dominic Ricottone Fixed uwsgi 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);
};