Files
init.sh/repo/hosts/biliran/rsyslog.conf
2025-03-25 11:20:37 +01:00

104 lines
2.6 KiB
Plaintext

# /etc/rsyslog.conf Configuration file for rsyslog.
#
# For more information see
# /usr/share/doc/rsyslog-doc/html/rsyslog_conf.html
#################
#### MODULES ####
#################
module(load="imuxsock") # provides support for local system logging
module(load="imklog") # provides kernel logging support
#module(load="immark") # provides --MARK-- message capability
# provides UDP syslog reception
module(load="imudp")
input(type="imudp" port="514")
# provides TCP syslog reception
module(load="imtcp")
input(type="imtcp" port="514")
###########################
#### GLOBAL DIRECTIVES ####
###########################
#
# Use traditional timestamp format.
# To enable high precision timestamps, comment out the following line.
#
$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat
#
# Set the default permissions for all log files.
#
$FileOwner root
$FileGroup adm
$FileCreateMode 0640
$DirCreateMode 0755
$Umask 0022
#
# Where to place spool and state files
#
$WorkDirectory /var/spool/rsyslog
#
# Include all config files in /etc/rsyslog.d/
#
$IncludeConfig /etc/rsyslog.d/*.conf
###############
#### RULES ####
###############
#
# First some standard log files. Log by facility.
#
auth,authpriv.* /share/services/syslog/auth.log
*.*;auth,authpriv.none -/share/services/syslog/syslog
cron.* /share/services/syslog/cron.log
daemon.* -/share/services/syslog/daemon.log
kern.* -/share/services/syslog/kern.log
lpr.* -/share/services/syslog/lpr.log
mail.* -/share/services/syslog/mail.log
user.* -/share/services/syslog/user.log
#
# Logging for the mail system. Split it up so that
# it is easy to write scripts to parse these files.
#
mail.info -/share/services/syslog/mail.info
mail.warn -/share/services/syslog/mail.warn
mail.err /share/services/syslog/mail.err
# Miscelanious logging facilities
local0.* /share/services/syslog/local0.log
local1.* /share/services/syslog/local1.log
local2.* /share/services/syslog/local2.log
local3.* /share/services/syslog/local3.log
local4.* /share/services/syslog/local4.log
local5.* /share/services/syslog/local5.log
local6.* /share/services/syslog/local6.log
local7.* /share/services/syslog/local7.log
#
# Some "catch-all" log files.
#
*.=debug;\
auth,authpriv.none;\
news.none;mail.none -/share/services/syslog/debug
*.=info;*.=notice;*.=warn;\
auth,authpriv.none;\
cron,daemon.none;\
mail,news.none -/share/services/syslog/messages
#
# Emergencies are sent to everybody logged in.
#
*.emerg :omusrmsg:*