Skip to content

Commit

Permalink
Merge pull request #249 from julmon/add_rpm_conf_file
Browse files Browse the repository at this point in the history
Add temboard.conf file for RPM
  • Loading branch information
julmon authored Jan 12, 2018
2 parents 8d99a5e + 34107fc commit 3476f66
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions rpm/temboard.rpm.conf
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3476f66

Please sign in to comment.