blob: a44ee75cc32369eacd0c040e341e47c2899cbb9c [file] [log] [blame]
tierno0aef0db2018-02-01 19:13:07 +01001
2# TODO currently is a pure yaml format. Transform it to [ini] style with yaml inside to be coherent with other modules
3
4#[global]
5global:
6 log_file: ""
7 log_level: DEBUG
8
9#[RO]
10RO:
11 #host: ro # hostname or IP
12 host: localhost
13 port: 9090
14 tenant: osm
15
16#[VCA]
17VCA:
18 host: vca
19 port: 17070
20 user: admin
21 secret: secret
22
23#[database]
24database:
tiernof3c4dbc2018-02-05 14:53:28 +010025 driver: mongo # mongo or memory
tierno0aef0db2018-02-01 19:13:07 +010026 host: mongo # hostname or IP
27 port: 27017
28 name: osm
29 user: user
30 password: password
31
32#[storage]
33storage:
34 driver: local # local filesystem
35 # for local provide file path
tiernof3c4dbc2018-02-05 14:53:28 +010036 path: /app/storage
tierno0aef0db2018-02-01 19:13:07 +010037
38#[message]
39message:
40 driver: local # local or kafka
41 # for local provide file path
tiernof3c4dbc2018-02-05 14:53:28 +010042 path: /app/storage/kafka
43 # for kafka provide host and port
44 host: kafka
45 port: 9092