appsettings.json 695 B

123456789101112131415161718192021222324
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Error"
  5. }
  6. },
  7. "ListenPort": 5555, // Kestrel监听端口
  8. "AllowedHosts": "*",
  9. "ConnectionStrings": {
  10. "ufp": "Server=192.168.124.94;Port=3306;Database=ufp;Uid=root;Pwd=ofilmeap;Charset=utf8;"
  11. },
  12. "ufp": {
  13. "DbType": "MySql",
  14. "ConnectionStrings": "Server=192.168.124.94;Port=3306;Database=ufp;Uid=root;Pwd=ofilmeap;Charset=utf8;Max Pool Size=100;"
  15. },
  16. "WebConfig": {
  17. "Logo": "assets/images/logo.png",
  18. "AppName": "欧菲光EAP管理系统",
  19. "Slogan": "一切为了客户    一切为了胜利   一切为了结果",
  20. "Index": "/data-center",
  21. "VisitLog": true
  22. // "Server": "http://localhost:18531/"
  23. }
  24. }