Files
nginx-analize/results/mock/syslog-ng.conf
Redsandyg fcc9139361 init
2026-06-15 06:31:35 +03:00

16 lines
273 B
Plaintext

@version: 4.7
@include "scl.conf"
source s_network {
network(ip(0.0.0.0) port(514) transport("udp"));
};
destination d_file {
file("/reports/nginx-syslog.log" template("$ISODATE $HOST $MSGHDR$MSG\n"));
};
log {
source(s_network);
destination(d_file);
};