appsettings.Development.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Information",
  5. "Microsoft.AspNetCore": "Warning"
  6. }
  7. },
  8. "SmsAccountInfo": {
  9. "MessageServerUrl": "http://webservice.fway.com.cn:1432/FWebService.asmx/FWay_Service", //短信发送地址
  10. "AccountUser": "CS12345", //短信系统账号
  11. "AccountPwd": "9EE3899305A8FC97D6146CAC6B802E6F", //短信系统密码
  12. "ReturnAccountUser": "fwkj", //短信回传账号
  13. "ReturnAccountPwd": "fwkj12" //短信回传密码
  14. },
  15. "AllowedHosts": "*",
  16. "ConnectionStrings": {
  17. "Push": "PORT=5432;DATABASE=push;HOST=110.188.24.182;PASSWORD=fengwo11!!;USER ID=dev;",
  18. "Redis": "110.188.24.182:50179",
  19. "MongoDB": "mongodb://192.168.100.121:27017"
  20. },
  21. "Cache": {
  22. "Host": "110.188.24.182",
  23. "Port": 50179,
  24. "Password": "fengwo123!$!$",
  25. "Database": 4
  26. },
  27. "Swagger": true,
  28. "Cors": {
  29. "Origins": [ "http://localhost:8888", "http://admin.hotline.fw.com", "http://hotline.fw.com" ]
  30. },
  31. "DatabaseConfiguration": {
  32. "ApplyDbMigrations": false,
  33. "ApplySeed": false
  34. },
  35. "MqConfiguration": {
  36. "DbConnectionString": "PORT=5432;DATABASE=fwmq;HOST=110.188.24.182;PASSWORD=fengwo11!!;USER ID=dev;",
  37. "UseDashBoard": true,
  38. "RabbitMq": {
  39. "UserName": "dev",
  40. "Password": "123456",
  41. "HostName": "110.188.24.182",
  42. "VirtualHost": "fwt-master"
  43. }
  44. },
  45. //系统配置
  46. "ChannelConfiguration": {
  47. "ProcessingServices": "Services1", //服务名称
  48. "HotlineAddressUrl": "http://localhost:50100/" //推送地址
  49. }
  50. }