| tierno | 0aef0db | 2018-02-01 19:13:07 +0100 | [diff] [blame] | 1 | |
| 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] |
| 5 | global: |
| 6 | log_file: "" |
| 7 | log_level: DEBUG |
| 8 | |
| 9 | #[RO] |
| 10 | RO: |
| 11 | #host: ro # hostname or IP |
| 12 | host: localhost |
| 13 | port: 9090 |
| 14 | tenant: osm |
| 15 | |
| 16 | #[VCA] |
| 17 | VCA: |
| 18 | host: vca |
| 19 | port: 17070 |
| 20 | user: admin |
| 21 | secret: secret |
| 22 | |
| 23 | #[database] |
| 24 | database: |
| 25 | #driver: mongo # mongo or memory |
| 26 | driver: memory |
| 27 | host: mongo # hostname or IP |
| 28 | port: 27017 |
| 29 | name: osm |
| 30 | user: user |
| 31 | password: password |
| 32 | |
| 33 | #[storage] |
| 34 | storage: |
| 35 | driver: local # local filesystem |
| 36 | # for local provide file path |
| 37 | #path: /app/storage |
| 38 | path: /home/atierno/OSM/osm/RO/lcm/local/storage |
| 39 | |
| 40 | #[message] |
| 41 | message: |
| 42 | driver: local # local or kafka |
| 43 | # for local provide file path |
| 44 | #path: /app/storage/kafka |
| 45 | path: /home/atierno/OSM/osm/RO/lcm/local/kafka |