2019-07-27 16:50:19 +02:00
|
|
|
# file: statusd.conf
|
|
|
|
|
|
|
|
# Configuration file for the server, who is manage the api for door status
|
|
|
|
# from krautspace jena.
|
|
|
|
|
|
|
|
# host, where server lives (string with fqdn or ipv4). default ist
|
|
|
|
# localhost.
|
2019-07-29 18:23:45 +02:00
|
|
|
HOST = '127.0.0.1'
|
2019-07-27 16:50:19 +02:00
|
|
|
|
|
|
|
# port, where the server is listen. default is 100001
|
|
|
|
PORT = 10001
|
|
|
|
|
2019-07-29 18:23:45 +02:00
|
|
|
# timeout for connection
|
|
|
|
TIMEOUT = 5
|
2019-07-27 16:50:19 +02:00
|
|
|
|
2019-07-29 18:23:45 +02:00
|
|
|
# path for ssl keys and certificates. default is the current directory.
|
|
|
|
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'
|
2019-07-27 16:50:19 +02:00
|
|
|
|
|
|
|
# loglevel (maybe ERROR, INFO, DEBUG) - not implementet at the moment.
|
2019-07-29 18:23:45 +02:00
|
|
|
VERBOSITY = 'error'
|