-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathconfig.yaml
More file actions
73 lines (54 loc) · 2.06 KB
/
config.yaml
File metadata and controls
73 lines (54 loc) · 2.06 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# API server listen address
# Defauls to: ":8080" which will listen on all avalable interfaces.
# Overwrite with environment variable: DEVICECONNECT_LISTEN
listen: :8080
# NATS uri
# Defauls to: "nats://localhost:4222"
# Overwrite with environment variable: DEVICECONNECT_NATS_URI
nats_uri: "nats://mender-nats:4222"
# Mongodb connection string
# Defaults to: "mongodb://localhost"
# Overwrite with environment variable: DEVICECONNECT_MONGO_URL
mongo_url: mongodb://mender-mongo:27017
# Mongodb database name
# Defaults to: "deviceconnect"
# Overwrite with environment variable: DEVICECONNECT_MONGO_DBNAME
mongo_dbname: deviceconnect
# Enable SSL for mongo connections
# Defaults to: false
# Overwrite with environment variable: DEVICECONNECT_MONGO_SSL
# mongo_ssl: false
# SkipVerify controls whether a mongo client verifies the
# server's certificate chain and host name.
# If InsecureSkipVerify is true, accepts any certificate
# presented by the server and any host name in that certificate.
# Defaults to: false
# Overwrite with environment variable: DEVICECONNECT_MONGO_SSL_SKIPVERIFY
# mongo_ssl_skipverify: false
# Mongodb username
# Overwrites username set in connection string.
# Defaults to: none
# Overwrite with environment variable: DEVICECONNECT_MONGO_USERNAME
# mongo_username: user
# Mongodb password
# Overwrites password set in connection string.
# Defaults to: none
# Overwrite with environment variable: DEVICECONNECT_MONGO_PASSWORD
# mongo_password: secret
## workflows service URL
## Defaults to: "http://mender-workflows-server:8080"
## Overwrite with environment variable DEVICECONNECT_WORKFLOWS_URL
#
# workflows_url: http://mender-workflows-server:8080
## enable/disable audit logging
## Defaults to: false
## Overwrite with environment variable DEVICECONNECT_ENABLE_AUDIT
#
# enable_audit: false
# ws:
# List of CORS allowed origins. The URLs are matched using exact match.
# allowed_origins: []
# graceful shutdown timeout
# Defaults to: 60s
# Overwrite with environment variable DEVICECONNECT_GRACEFUL_SHUTDOWN_TIMEOUT
# graceful_shutdown_timeout: 60s