58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
},
|
|
"ConnectionStrings": {
|
|
"conn_zrAdmin": "server=LAPTOP-STKF2M8H\\SQLEXPRESS;uid=sa;pwd=zradmin123;database=ZrAdmin;Trusted_Connection=SSPI",
|
|
"conn_bus": "server=LAPTOP-STKF2M8H\\SQLEXPRESS;uid=zr;pwd=zradmin123;database=ZrAdmin;Trusted_Connection=SSPI"
|
|
},
|
|
"conn_zrAdmin_type": 1, //MySql = 0, SqlServer = 1
|
|
"conn_bus_type": 1,
|
|
"urls": "http://localhost:8888", //项目启动url
|
|
"sysConfig": {
|
|
"DBCommandTimeout": 10,
|
|
"cors": "http://localhost:8887" //跨域地址(前端启动项目,前后端分离单独部署需要设置),多个用","隔开
|
|
},
|
|
"JwtSettings": {
|
|
"Issuer": "ZRAdmin.NET",
|
|
"Audience": "ZRAdmin.NET",
|
|
"SecretKey": "SecretKey-ZRADMIN.NET-20210101",
|
|
"Expire": 30
|
|
},
|
|
"DemoMode": false, //是否演示模式
|
|
"DbKey": "", //数据库加密key
|
|
"Upload": {
|
|
"UploadDirectory": "/",
|
|
"UploadUrl": "http://localhost:8888"
|
|
},
|
|
//阿里云存储配置
|
|
"ALIYUN_OSS": {
|
|
"REGIONID": "cn-hangzhou",
|
|
"KEY": "XX",
|
|
"SECRET": "XX",
|
|
"bucketName": "bucketName",
|
|
"domainUrl": "http://xxx.xxx.com" //访问资源域名
|
|
},
|
|
"gen": {
|
|
"conn": "server=LAPTOP-STKF2M8H\\SQLEXPRESS;user=zr;pwd=abc;database=ZrAdmin;Trusted_Connection=SSPI",
|
|
"dbType": 1, //MySql = 0, SqlServer = 1
|
|
"autoPre": true, //自动去除表前缀
|
|
"author": "zr",
|
|
"tablePrefix": "sys_" //"表前缀(生成类名不会包含表前缀,多个用逗号分隔)",
|
|
},
|
|
//邮箱配置信息
|
|
"MailOptions": {
|
|
//发送人邮箱
|
|
"From": "xxxx@qq.com",
|
|
//发送人邮箱密码
|
|
"Password": "123456",
|
|
//协议
|
|
"Smtp": "smtp.qq.com",
|
|
"Port": 587
|
|
}
|
|
}
|