statusd.conf: add any variables
TIMEOUT, CLIENT_CERT, API_TEMPLATE added. CERT and KEY changed to SERVER_CERT and SERVER_KEY
This commit is contained in:
parent
cd1697a134
commit
84865a37bf
1 changed files with 12 additions and 7 deletions
19
statusd.conf
19
statusd.conf
|
@ -5,17 +5,22 @@
|
||||||
|
|
||||||
# host, where server lives (string with fqdn or ipv4). default ist
|
# host, where server lives (string with fqdn or ipv4). default ist
|
||||||
# localhost.
|
# localhost.
|
||||||
HOST = 127.0.0.1
|
HOST = '127.0.0.1'
|
||||||
|
|
||||||
# port, where the server is listen. default is 100001
|
# port, where the server is listen. default is 100001
|
||||||
PORT = 10001
|
PORT = 10001
|
||||||
|
|
||||||
# path for ssl key and certificate. default ist current directory.
|
# timeout for connection
|
||||||
# CERT = './certs/certificate.pem'
|
TIMEOUT = 5
|
||||||
KEY = ./certs/key.pem
|
|
||||||
|
|
||||||
# path to api file
|
# path for ssl keys and certificates. default is the current directory.
|
||||||
API = ./api
|
SERVER_CERT = './certs/server.crt'
|
||||||
|
SERVER_KEY = './certs/server.key'
|
||||||
|
CLIENT_CERT = './certs/client.crt'
|
||||||
|
|
||||||
|
# path to api files
|
||||||
|
API_TEMPLATE = './api_template'
|
||||||
|
API = './api'
|
||||||
|
|
||||||
# loglevel (maybe ERROR, INFO, DEBUG) - not implementet at the moment.
|
# loglevel (maybe ERROR, INFO, DEBUG) - not implementet at the moment.
|
||||||
# VERBOSITY = 'debug'
|
VERBOSITY = 'error'
|
||||||
|
|
Loading…
Reference in a new issue