app.conf 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. appname = Yunlot
  2. httpport = 6202
  3. runmode = dev
  4. # 数据解析加载目录
  5. Analysis_Dir = "/var/lib/docker/volumes/yunlotso/_data/"
  6. # Nats
  7. NatsServer_Url = "127.0.0.1:4222"
  8. # Mysql
  9. MysqlServer_UrlPort = "127.0.0.1:3306"
  10. MysqlServer_Database = "yunlot"
  11. MysqlServer_Username = "root"
  12. MysqlServer_Password = "Ayunlot123"
  13. MysqlServer_MaxIdleConnections = 10
  14. MysqlServer_MaxOpenConnections = 200
  15. # Mongodb
  16. Mongodb_Url = "mongodb://127.0.0.1:27017"
  17. Mongodb_DB = "yunlot"
  18. Mongodb_Username = "yunlot8"
  19. Mongodb_Password = "yunlot123"
  20. # Redis
  21. ; Redis_address = "172.17.0.5:8379"
  22. Redis_address = "127.0.0.1:6379"
  23. Redis_password = ""
  24. Redis_dbNum = "1"
  25. # Mqtt
  26. MqttServer_Open = 1
  27. MqttServer_Url = "172.17.0.4:1883"
  28. MqttServer_ClientID = "YunlotServer"
  29. MqttServer_Username = "admin"
  30. MqttServer_Password = "8f9qRNixEMhCVrF"
  31. # TCP
  32. TCPServer_Open = 1
  33. # HTTP
  34. HTTPServer_Open = 1
  35. HTTPServer_Port = 8081