Xentrk
Part of the Furniture
For anyone else landing here wanting to install and configure. I found that v3.9.1 places a default config file in /opt/etc/syslog-ng.conf. You then place your custom config file in /opt/etc/syslog-ng.d/syslog-ng.conf. I used the @kvic version posted here with modifications. I had to remove the entries that were already in the /opt/etc/syslog-ng.conf file. That got it to work. Here is the conf file I used:
Code:
destination d_iptables { file("/opt/var/log/iptables.log"); };
destination d_pixelserv { file("/opt/var/log/pixelserv.log"); };
filter f_iptables { facility(kern) and message("DROP IN="); };
filter f_pixelserv { facility(daemon) and program("pixelserv"); };
filter f_default { not filter(f_pixelserv) and not filter(f_iptables); };
log { source(src); filter(f_pixelserv); destination(d_pixelserv); };
log { source(src); filter(f_iptables); destination(d_iptables); };