1
1
# TODO: Go here for detailed information on Application Service configuation:
2
2
# https://docs.edgexfoundry.org/1.3/microservices/application/GeneralAppServiceConfig/
3
3
[Writable ]
4
- LogLevel = ' INFO'
4
+ LogLevel = " INFO"
5
5
6
6
[Writable .StoreAndForward ]
7
7
Enabled = false
8
- RetryInterval = ' 5m '
8
+ RetryInterval = " 5m "
9
9
MaxRetryCount = 10
10
10
11
11
[Writable .InsecureSecrets ]
@@ -23,29 +23,29 @@ LogLevel = 'INFO'
23
23
24
24
25
25
[Service ]
26
- HealthCheckInterval = ' 10s'
27
- Host = ' localhost'
26
+ HealthCheckInterval = " 10s"
27
+ Host = " localhost"
28
28
# TODO: set this port appropriately,
29
29
# App service use port assigments 597xx with lower range 00-39 reserved for
30
30
# app-service-configurable profiles/instances, Rules Engine and examples
31
31
Port = 59740
32
- ServerBindAddr = ' ' # Leave blank so default to Host value unless different value is needed.
33
- StartupMsg = ' new-app-service Application Service has started'
32
+ ServerBindAddr = " " # Leave blank so default to Host value unless different value is needed.
33
+ StartupMsg = " new-app-service Application Service has started"
34
34
MaxResultCount = 0 # Not curently used by App Services.
35
35
MaxRequestSize = 0 # Not curently used by App Services.
36
- RequestTimeout = ' 5s '
36
+ RequestTimeout = " 5s "
37
37
38
38
# TODO: Remove section if not using HTTPS Webserver. Default protocol is HTTP if section is empty
39
39
[HttpServer ]
40
- Protocol = ' http'
41
- SecretName = ' https'
42
- HTTPSCertName = ' cert'
43
- HTTPSKeyName = ' key'
40
+ Protocol = " http"
41
+ SecretName = " https"
42
+ HTTPSCertName = " cert"
43
+ HTTPSKeyName = " key"
44
44
45
45
[Registry ]
46
- Host = ' localhost'
46
+ Host = " localhost"
47
47
Port = 8500
48
- Type = ' consul'
48
+ Type = " consul"
49
49
50
50
[Database ]
51
51
Type = " redisdb"
@@ -59,71 +59,71 @@ Timeout = "30s"
59
59
# service in secure mode.
60
60
# For more deatils about SecretStore: https://docs.edgexfoundry.org/1.3/microservices/security/Ch-SecretStore/
61
61
[SecretStore ]
62
- Type = ' vault'
63
- Host = ' localhost'
62
+ Type = " vault"
63
+ Host = " localhost"
64
64
Port = 8200
65
- Path = ' appservice/'
66
- Protocol = ' http'
67
- RootCaCertPath = ' '
68
- ServerName = ' '
69
- TokenFile = ' /tmp/edgex/secrets/new-app-service/secrets-token.json'
65
+ Path = " appservice/"
66
+ Protocol = " http"
67
+ RootCaCertPath = " "
68
+ ServerName = " "
69
+ TokenFile = " /tmp/edgex/secrets/new-app-service/secrets-token.json"
70
70
[SecretStore .Authentication ]
71
- AuthType = ' X-Vault-Token'
71
+ AuthType = " X-Vault-Token"
72
72
73
73
[Clients ]
74
74
[Clients .core-data ]
75
- Protocol = ' http'
76
- Host = ' localhost'
75
+ Protocol = " http"
76
+ Host = " localhost"
77
77
Port = 59880
78
78
79
79
[Clients .core-metadata ]
80
- Protocol = ' http'
81
- Host = ' localhost'
80
+ Protocol = " http"
81
+ Host = " localhost"
82
82
Port = 59881
83
83
84
84
[Clients .core-command ]
85
- Protocol = ' http'
86
- Host = ' localhost'
85
+ Protocol = " http"
86
+ Host = " localhost"
87
87
Port = 59882
88
88
89
89
[Clients .support-notifications ]
90
- Protocol = ' http'
91
- Host = ' localhost'
90
+ Protocol = " http"
91
+ Host = " localhost"
92
92
Port = 59860
93
93
94
94
[Trigger ]
95
95
Type =" edgex-messagebus"
96
96
[Trigger .EdgexMessageBus ]
97
- Type = ' redis'
97
+ Type = " redis"
98
98
[Trigger .EdgexMessageBus .SubscribeHost ]
99
- Host = ' localhost'
99
+ Host = " localhost"
100
100
Port = 6379
101
- Protocol = ' redis'
101
+ Protocol = " redis"
102
102
SubscribeTopics =" edgex/events/#"
103
103
[Trigger .EdgexMessageBus .PublishHost ] # TODO: Remove if service is NOT publishing back to the message bus
104
- Host = ' localhost'
104
+ Host = " localhost"
105
105
Port = 6379
106
- Protocol = ' redis'
106
+ Protocol = " redis"
107
107
PublishTopic =" event-xml"
108
108
[Trigger .EdgexMessageBus .Optional ]
109
- authmode = ' usernamepassword' # requied for redis messagebus (secure or insecure).
110
- secretname = ' redisdb'
109
+ authmode = " usernamepassword" # requied for redis messagebus (secure or insecure).
110
+ secretname = " redisdb"
111
111
112
112
# TODO: If using mqtt messagebus, Uncomment this section and remove above [Trigger] section,
113
113
# Otherwise remove this commented out block
114
114
# [Trigger]
115
115
# Type="edgex-messagebus"
116
116
# [Trigger.EdgexMessageBus]
117
- # Type = ' mqtt'
117
+ # Type = " mqtt"
118
118
# [Trigger.EdgexMessageBus.SubscribeHost]
119
- # Host = ' localhost'
119
+ # Host = " localhost"
120
120
# Port = 1883
121
- # Protocol = ' tcp'
121
+ # Protocol = " tcp"
122
122
# SubscribeTopics="events, edgex/events/#"
123
123
# [Trigger.EdgexMessageBus.PublishHost] # TODO: Remove if service is NOT publishing back to the message bus
124
- # Host = ' localhost'
124
+ # Host = " localhost"
125
125
# Port = 1883
126
- # Protocol = ' tcp'
126
+ # Protocol = " tcp"
127
127
# PublishTopic="event-xml"
128
128
# [Trigger.EdgexMessageBus.Optional]
129
129
# ClientId ="new-app-service"
@@ -133,8 +133,8 @@ Type="edgex-messagebus"
133
133
# AutoReconnect = "true"
134
134
# ConnectTimeout = "30" # Seconds
135
135
# SkipCertVerify = "false"
136
- # authmode = ' none' # change to ' usernamepassword', ' clientcert' , or ' cacert' for secure MQTT messagebus.
137
- # secretname = ' mqtt-bus'
136
+ # authmode = " none" # change to " usernamepassword", " clientcert" , or " cacert" for secure MQTT messagebus.
137
+ # secretname = " mqtt-bus"
138
138
139
139
# TODO: Add custom settings needed by your app service or remove if you don't have any settings.
140
140
# This can be any Key/Value pair you need.
0 commit comments