This commit is contained in:
Redsandyg
2026-06-15 06:31:35 +03:00
commit fcc9139361
50 changed files with 5400 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
@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);
};