Blame view

Hh.Mes.Api/appsettings.json 1.92 KB
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*",

  "ConnectionStrings": {
    //本地服务器测试环境 (配置文件key 不能写中文,程序会出现异常)
    //"BaseDBContext": "Data Source = .;Initial Catalog=BaseMES;User=sa;Password=6EjfZkO8o92OjsH7rK+kVg==;Persist Security Info=True",
    //"InterfaceDBContext": "Data Source = .;Initial Catalog=BaseMES;User=sa;Password=6EjfZkO8o92OjsH7rK+kVg==;Persist Security Info=True",
    //"RedisIp": "127.0.0.1:6379,defaultDatabase=10,password=qaz123456",

    //公司服务器测试环境 RedisDb:sany 使用 1,中海油使用 10,最大值是16
18
19
    "BaseDBContext": "Data Source=172.16.29.88;Initial Catalog=IoTUAT;User=LegLine;Password=6EjfZkO8o92OjsH7rK+kVg==;Persist Security Info=True",
    "InterfaceDBContext": "Data Source=172.16.29.88;Initial Catalog=IoTUAT;User=LegLine;Password=6EjfZkO8o92OjsH7rK+kVg==;Persist Security Info=True",
赖素文 authored
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
    "RedisIp": "172.16.29.88:6379,defaultDatabase=10,password=qaz123456",

    "HttpPort": "10008",
    "HttpsPort": "0",

    //登入验证忽略路径
    "AopAllowed": "Login,BulletinBoard,OtherLogin,Upstream,AppCheckVerByAppNameAndVer",

    //扩展字段
    "Extend1": "26", //默认存部门deptId
    "Extend2": "",
    "Extend3": "",
    "Extend4": "",
    "Extend5": "",
    "Extend6": "",
    "Extend7": "",
    "Extend8": ""
  },

  //自定义配置写这里
  "AppCustomSettings": {
    "copyright": "长沙华恒机器人系统有限公司",
    "AppKey": "hhweb",
    "AppSecret": "hhweb2.0",

    //扩展字段
    "AppCustomExtend1": "_off", //接口线上环境:_onLine  接口线下环境 _off  
    "AppCustomExtend2": "",
    "AppCustomExtend3": "",
    "AppCustomExtend4": "",

    "AppCustomExtend5": "",
    "AppCustomExtend6": "",
    "AppCustomExtend7": "",
    "AppCustomExtend8": ""
  }
}