forked from dalibo/temboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
temboard.dev.conf
44 lines (42 loc) · 1.15 KB
/
temboard.dev.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[temboard]
# Bind port
port = 8888
# Bind address
address = 0.0.0.0
# SSL: certificat file path (.pem)
ssl_cert_file = share/temboard_CHANGEME.pem
# SSL: private key file path (.key)
ssl_key_file = share/temboard_CHANGEME.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 = share/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 = .
[repository]
# Unix socket path.
host = 0.0.0.0
# PG port number.
port = 5432
# User name.
user = temboard
# User password.
password = temboard
# Database name.
dbname = temboard
[logging]
# Available methods for logging: stderr, syslog or file
# method = syslog
method = stderr
# 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