Feature 7184 New Generation RO
[osm/RO.git] / NG-RO / osm_ng_ro / ro.cfg
1 # Licensed under the Apache License, Version 2.0 (the "License");
2 # you may not use this file except in compliance with the License.
3 # You may obtain a copy of the License at
4 #
5 #    http://www.apache.org/licenses/LICENSE-2.0
6 #
7 # Unless required by applicable law or agreed to in writing, software
8 # distributed under the License is distributed on an "AS IS" BASIS,
9 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
10 # implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 [/]
15 # tools.secureheaders.on = True
16 tools.sessions.on = True
17 # increase security on sessions
18 tools.sessions.secure = True
19 tools.sessions.httponly = True
20 tools.encode.on: True,
21 tools.encode.encoding: 'utf-8'
22 tools.response_headers.on = True
23
24 # tools.auth_basic.on: True,
25 # tools.auth_basic.realm: 'localhost',
26 # tools.auth_basic.checkpassword: get_tokens
27
28
29 [/static]
30 # use env OSMRO_STATIC_ON, OSMRO_STATIC_DIR to override
31 tools.staticdir.on: True
32 tools.staticdir.dir: "/app/RO/RO-NG/osm_ng_ro/html_public"
33
34
35 [global]
36 # use env OSMRO_SERVER_XXX, OSMRO_LOG_XXX, OSMRO_TEST_XXX or OSMRO_AUTH_XXX to override. Use value in yaml format
37 server.socket_host: "0.0.0.0"
38 server.socket_port: 9998
39
40 # server.ssl_module: "builtin"
41 # server.ssl_certificate: "./http/cert.pem"
42 # server.ssl_private_key: "./http/privkey.pem"
43 # server.ssl_pass_phrase: "osm4u"
44 server.thread_pool: 10
45 server.ns_threads: 1
46
47 # Uncomment for allow basic authentication apart from bearer
48 # auth.allow_basic_authentication: True
49
50 # comment or set to False to disable /test URL
51 server.enable_test: True
52
53 log.screen: False
54 log.access_file: ""
55 log.error_file: ""
56
57 log.level: "DEBUG"
58 #log.file: /var/log/osm/ro.log
59
60
61 [database]
62 # use env OSMRO_DATABASE_XXX to override
63 driver: "mongo"            # mongo or memory
64 uri:    "mongodb://mongo:27017"
65 name: "osm"
66 # user: "user"
67 # password: "password"
68 # commonkey: "commonkey"
69
70 [storage]
71 # use env OSMRO_STORAGE_XXX to override
72 driver: "local"            # local filesystem
73 # for local provide file path
74 path: "/app/storage"       #"/home/atierno/OSM/osm/NBI/local/storage"
75
76 loglevel:  "DEBUG"
77 #logfile: /var/log/osm/ro-storage.log
78
79 [message]
80 # use env OSMRO_MESSAGE_XXX to override
81 driver: "kafka"             # local or kafka
82 # for local provide file path
83 path: "/app/storage/kafka"
84 host: "kafka"
85 port: 9092
86
87 loglevel:  "DEBUG"
88 #logfile: /var/log/osm/ro-message.log
89 group_id: "ro-server"
90
91 [authentication]
92 # use env OSMRO_AUTHENTICATION_XXX to override
93