-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #249 from julmon/add_rpm_conf_file
Add temboard.conf file for RPM
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |