Advertisement
Guest User

Untitled

a guest
May 9th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. {
  2. "settings": {
  3. "httpServer": {
  4. "enabled": true,
  5. "port": 80
  6. },
  7. "database": {
  8. "deviceAttributeLogging": [
  9. {
  10. "deviceId": "*",
  11. "attributeName": "*",
  12. "type": "*",
  13. "interval": "0",
  14. "expire": "7d"
  15. },
  16. {
  17. "deviceId": "*",
  18. "attributeName": "*",
  19. "type": "continuous",
  20. "interval": "5min",
  21. "expire": "7d"
  22. },
  23. {
  24. "deviceId": "*",
  25. "attributeName": "temperature",
  26. "type": "number",
  27. "expire": "1y"
  28. },
  29. {
  30. "deviceId": "*",
  31. "attributeName": "humidity",
  32. "type": "number",
  33. "expire": "1y"
  34. }
  35. ],
  36. "messageLogging": [
  37. {
  38. "level": "*",
  39. "tags": [],
  40. "expire": "7d"
  41. },
  42. {
  43. "level": "debug",
  44. "tags": [],
  45. "expire": "0"
  46. }
  47. ]
  48. },
  49. "authentication": {
  50. "secret": "xxxxxxxxxx"
  51. },
  52. "httpsServer": {},
  53. "cors": {},
  54. "gui": {}
  55. },
  56. "plugins": [
  57. {
  58. "plugin": "cron"
  59. },
  60. {
  61. "plugin": "mobile-frontend"
  62. },
  63. {
  64. "debug": true,
  65. "plugin": "ble",
  66. "active": true,
  67. "scanInterval": 300000
  68. },
  69. {
  70. "debug": true,
  71. "plugin": "ble-mi-flora",
  72. "active": true
  73. },
  74. {
  75. "plugin": "datetime",
  76. "active": true
  77. },
  78. {
  79. "user": "sirhc",
  80. "password": "************",
  81. "plugin": "fritz",
  82. "active": true
  83. },
  84. {
  85. "driver": "serialport",
  86. "driverOptions": {
  87. "serialDevice": "/dev/ttyUSB0",
  88. "baudrate": 115200
  89. },
  90. "plugin": "homeduino",
  91. "active": true
  92. },
  93. {
  94. "debug": true,
  95. "plugin": "led-light",
  96. "active": true
  97. },
  98. {
  99. "brokers": [],
  100. "plugin": "mqtt",
  101. "active": true
  102. },
  103. {
  104. "plugin": "sysinfo",
  105. "active": true
  106. },
  107. {
  108. "plugin": "watchdog-unix",
  109. "active": true
  110. },
  111. {
  112. "host": "",
  113. "plugin": "yamaha-avr",
  114. "active": true
  115. }
  116. ],
  117. "devices": [],
  118. "rules": [],
  119. "pages": [
  120. {
  121. "id": "favourite",
  122. "name": "Favourites",
  123. "devices": []
  124. }
  125. ],
  126. "groups": [],
  127. "users": [
  128. {
  129. "username": "admin",
  130. "password": "xxxxxxxxxx",
  131. "role": "admin"
  132. }
  133. ],
  134. "roles": [
  135. {
  136. "name": "admin",
  137. "permissions": {
  138. "pages": "write",
  139. "rules": "write",
  140. "variables": "write",
  141. "messages": "write",
  142. "events": "write",
  143. "devices": "write",
  144. "groups": "write",
  145. "plugins": "write",
  146. "updates": "write",
  147. "database": "write",
  148. "config": "write",
  149. "controlDevices": true,
  150. "restart": true
  151. }
  152. }
  153. ],
  154. "variables": []
  155. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement