Skip to content

Commit

Permalink
Document container management MQTTS configuration properties (#194)
Browse files Browse the repository at this point in the history
[#192] Document container management MQTTS configuration properties in the local communication

- Documentation for the MQTTS configuration is added
- .hugo_build.lock file is added to the .gitignore

Signed-off-by: Kristiyan Gostev <[email protected]>
  • Loading branch information
Kristiyan Gostev authored Dec 15, 2022
1 parent d46d274 commit 1ebec11
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions web/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
public/
node_modules
resources/
.hugo_build.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ To control all aspects of the container manager behavior.
| acknowledge_timeout | int | 15000 | Acknowledge timeout in milliseconds for the MQTT requests |
| subscribe_timeout | int | 15000 | Subscribe timeout in milliseconds for the MQTT requests |
| unsubscribe_timeout | int | 5000 | Unsubscribe timeout in milliseconds for the MQTT requests |
| **Digital twin - connectivity - TLS** | | | |
| root_ca | string | | PEM encoded CA certificates file |
| client_cert | string | | PEM encoded certificate file to authenticate to the MQTT server/broker |
| client_key | string | | PEM encoded unencrypted private key file to authenticate to the MQTT server/broker |
| **Logging** | | | |
| log_file | string | log/container-management.log | Path to the file where the container manager's log messages are written |
| log_level | string | INFO | All log messages at this or a higher level will be logged, the log levels in descending order are: ERROR, WARN, INFO, DEBUG and TRACE |
Expand Down Expand Up @@ -174,7 +178,12 @@ Be aware that in the registry configuration the host (used as a key) has to be s
"connect_timeout": 30000,
"acknowledge_timeout": 15000,
"subscribe_timeout": 15000,
"unsubscribe_timeout": 5000
"unsubscribe_timeout": 5000,
"transport": {
"root_ca": "",
"client_cert": "",
"client_key": ""
}
}
},
"log": {
Expand Down

0 comments on commit 1ebec11

Please sign in to comment.