29 lines
682 B
Plaintext
29 lines
682 B
Plaintext
|
# /etc/rsyslog.conf Configuration file for rsyslog.
|
||
|
#
|
||
|
# For more information see
|
||
|
# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
|
||
|
#
|
||
|
# Default logging rules can be found in /etc/rsyslog.d/50-default.conf
|
||
|
|
||
|
|
||
|
#################
|
||
|
#### MODULES ####
|
||
|
#################
|
||
|
|
||
|
$ModLoad imuxsock # provides support for local system logging
|
||
|
|
||
|
###########################
|
||
|
#### GLOBAL DIRECTIVES ####
|
||
|
###########################
|
||
|
|
||
|
# Filter duplicated messages
|
||
|
$RepeatedMsgReduction on
|
||
|
#
|
||
|
# Where to place spool and state files
|
||
|
#
|
||
|
$WorkDirectory /var/spool/rsyslog
|
||
|
|
||
|
# Write everything to stdout
|
||
|
$template fmt,"%timestamp:::date-rfc3164%\n"
|
||
|
*.* /dev/stdout
|