diff --git a/rpm/temboard.rpm.conf b/rpm/temboard.rpm.conf new file mode 100644 index 000000000..a7dd76310 --- /dev/null +++ b/rpm/temboard.rpm.conf @@ -0,0 +1,44 @@ +[temboard] +# Bind port +port = 8888 +# Bind address +address = 0.0.0.0 +# SSL: certificat file path (.pem) +ssl_cert_file = /etc/pki/tls/certs/temboard.pem +# SSL: private key file path (.key) +ssl_key_file = /etc/pki/tls/private/temboard.key +# SSL: CA cert file +# This file must contains SSL cert of each agent that the UI can establish a connexion to. +# ssl_ca_cert_file = temboard_ca_certs_CHANGEME.pem +# Cookie secret key +cookie_secret = SECRETKEYTOBECHANGED +# Plugins +plugins = ["dashboard", "pgconf", "activity", "monitoring"] +# Array of plugins requiring a PG connexion to the repository. +plugins_orm_engine = ["monitoring"] +# Working dir +home = /var/lib/temboard + +# Let's use defaults / env var for repository +[repository] +# Unix socket path. +host = /var/run/postgresql +# PG port number. +port = 5432 +# User name. +user = temboard +# User password. +# password = +# Database name. +dbname = temboard + +[logging] +# Available methods for logging: stderr, syslog or file +method = file +# Syslog facility. +# facility = local0 +# Log destination, should be /dev/log for syslog on Linux. +# When using file logging method, this is referencing the log file path. +destination = /var/log/temboard/temboard.log +# Default log level. +level = DEBUG