appsettings.json
1.23 KB
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
//IOT 生产环境
"IOT_Production": "Data Source=172.16.29.70;Initial Catalog=IoT;Persist Security Info=True;User ID=sa;Password=1qaz!QAZ;Trust Server Certificate=True",
//IOT 测试环境
"IOT_Development": "Data Source=172.16.29.70;Initial Catalog=IoTUAT;Persist Security Info=True;User ID=sa;Password=1qaz!QAZ;Trust Server Certificate=True",
//HuaHengLicence 生产环境
"HuaHengLicence_Production": "server=172.16.29.45;user id=root;password=hhsoftware;persistsecurityinfo=True;database=huahenglicence;SslMode=none;Charset=utf8mb4;Allow User Variables=True",
//HuaHengLicence 测试环境
"HuaHengLicence_Development": "server=172.16.29.45;user id=root;password=hhsoftware;persistsecurityinfo=True;database=huahenglicence_test;SslMode=none;Charset=utf8mb4;Allow User Variables=True",
//缓存
"Redis": "172.16.29.88:6379,defaultDatabase=11,password=qaz123456",
//RabbitMQ
"RabbitMQ": "HostName=172.16.29.90;UserName=producer;Password=Aa123456;VirtualHost=hhecs.daq;"
},
//是否为生产环境
"IsProductionEnvironment": false
}