projects
/
openwrt
/
svn-archive
/
archive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[packages] pure-ftpd: update to 1.0.28
[openwrt/svn-archive/archive.git]
/
admin
/
syslog-ng3
/
files
/
syslog-ng.conf
1
@version:3.0
2
3
options {
4
chain_hostnames(no);
5
create_dirs(yes);
6
flush_lines(0);
7
keep_hostname(yes);
8
log_fifo_size(256);
9
log_msg_size(1024);
10
stats_freq(0);
11
flush_lines(0);
12
use_fqdn(no);
13
};
14
15
source src {
16
internal();
17
unix-stream("/dev/log");
18
};
19
20
source net {
21
udp(ip(0.0.0.0) port(514));
22
};
23
24
destination messages {
25
file("/var/log/messages");
26
};
27
28
log {
29
source(src);
30
source(net);
31
destination(messages);
32
};