summaryrefslogtreecommitdiffstats
path: root/oti/event-handler/etc/config.json
blob: dad24313f380cc8286e024653dbbdab65882e277 (plain)
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
{
    "version" : "1.0.0",
    "wservice_port" : 9443,
    "oti_handler" : {
        "system" : "oti_handler",
        "tls" : {
            "cert_directory" : "/opt/app/oti_handler/certificate",
            "cacert" : "/opt/app/oti_handler/certificate/cacert.pem",
            "private_key" : "tls.key",
            "server_cert" : "tls.crt",
            "server_ca_chain" : "tls.chain.crt"
        }
    },
    "logging" : {
        "version": 1,
        "disable_existing_loggers": false,
        "formatters": {
            "local": {
                "format": "%(asctime)s.%(msecs)03d %(levelname)+8s %(threadName)s %(name)s.%(funcName)s: %(message)s",
                "datefmt": "%Y%m%d_%H%M%S"
            }
        },
        "handlers": {
            "file": {
                "class": "logging.handlers.RotatingFileHandler",
                "formatter": "local",
                "filename" : "logs/oti_handler.log",
                "level": "DEBUG",
                "maxBytes": 200000000,
                "backupCount": 5,
                "delay": true
            }
        },
        "loggers": {
            "dti_handler" : {
                "handlers": ["file"],
                "propagate":false
            }
        },
        "root": {
            "handlers": ["file"]
        }
    }
}