123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- {
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "ConnectionStrings": {
- "conn_db": "Data Source=localhost;port=3306;User ID=sa;Password=sa123456;Database=mytest_db;CharSet=utf8;sslmode=none;",
- //"conn_db": "Data Source=39.106.7.239;port=3306;User ID=sa;Password=123456;Database=mytest_db;CharSet=utf8;sslmode=none;",
- //"conn_db": "Data Source=192.168.0.1;port=3306;User ID=sa;Password=123456;Database=mytest_db;CharSet=utf8;sslmode=none;",
- "conn_db_type": "0" //数据库类型 MySql = 0, SqlServer = 1, Oracle = 3
- },
- "urls": "http://localhost:8888;http://192.168.137.1:8888;", // 项目启动url,如果改动端口前端对应devServer也需要进行修改 ;
- "corsUrls": "http://localhost:8887", //跨域地址(前端启动项目,前后端分离单独部署需要设置),多个用","隔开
- "JwtSettings": {
- "Issuer": "ZRAdmin.NET",
- "Audience": "ZRAdmin.NET",
- "SecretKey": "SecretKey-ZRADMIN.NET-20210101",
- "Expire": 1440 //jwt登录过期时间(分)
- },
- "InitDb": false, //是否初始化db
- "DemoMode": false, //是否演示模式
- "Upload": {
- "uploadUrl": "http://localhost:8888", //本地存储资源访问路径
- "localSavePath": "uploads", //本地上传默认文件存储目录 wwwroot/uploads
- "maxSize": 15, //上传文件大小限制 15M
- "notAllowedExt": [ ".bat", ".exe", ".jar", ".js" ]
- },
- //阿里云存储配置
- "ALIYUN_OSS": {
- "REGIONID": "", //eg:cn-hangzhou
- "KEY": "XX",
- "SECRET": "XX",
- "bucketName": "bucketName",
- "domainUrl": "http://xxx.xxx.com", //访问资源域名
- "maxSize": 100 //上传文件大小限制 100M
- },
- //企业微信通知配置
- "WxCorp": {
- "AgentID": "",
- "CorpID": "",
- "CorpSecret": "",
- "SendUser": "@all"
- },
- "gen": {
- "conn": "Data Source=localhost;port=3306;User ID=sa;Password=sa123456;Database=mytest_db;CharSet=utf8;sslmode=none;",
- //"conn": "Data Source=39.106.7.239;port=3306;User ID=sa;Password=123456;Database=mytest_db;CharSet=utf8;sslmode=none;",
- //"conn": "Data Source=192.168.0.1;port=3306;User ID=sa;Password=123456;Database=mytest_db;CharSet=utf8;sslmode=none;",
- "dbType": 0, //MySql = 0, SqlServer = 1
- "autoPre": true, //自动去除表前缀
- "author": "admin",
- "tablePrefix": "sys_", //"表前缀(生成类名不会包含表前缀,多个用逗号分隔)",
- "vuePath": "" //前端代码存储路径eg:D:\Work\ZRAdmin-Vue3
- },
- //邮箱配置信息
- "MailOptions": {
- //发送人邮箱
- "From": "", //eg:xxxx@qq.com
- //发送人邮箱密码
- "Password": "123456",
- //协议
- "Smtp": "smtp.qq.com",
- "Port": 587,
- "Signature": "系统邮件,请勿回复!"
- },
- //redis服务配置
- "RedisServer": {
- "Cache": "127.0.0.1:6379,defaultDatabase=0,poolsize=50,ssl=false,writeBuffer=10240,prefix=cache:",
- "Session": "127.0.0.1:6379,defaultDatabase=0,poolsize=50,ssl=false,writeBuffer=10240,prefix=session:"
- },
- //接口请求限制
- "IpRateLimiting": {
- "EnableEndpointRateLimiting": true,
- "StackBlockedRequests": false,
- "RealIpHeader": "X-Real-IP",
- "ClientIdHeader": "X-ClientId",
- "HttpStatusCode": 429,
- "EndpointWhitelist": [ "post:/system/dict/data/types", "*:/msghub/negotiate", "*:/LogOut", "*:/common/uploadfile" ],
- "QuotaExceededResponse": {
- "Content": "{{\"code\":429,\"msg\":\"访问过于频繁,请稍后重试\"}}",
- "ContentType": "application/json",
- "StatusCode": 429
- },
- //通用规则,api规则,结尾一定要带*
- "GeneralRules": [
- {
- "Endpoint": "*:/captchaImage",
- //时间段,格式:{数字}{单位};可使用单位:s, m, h, d
- "Period": "3s",
- "Limit": 5
- },
- {
- "Endpoint": "((post)|(put)):*",
- "Period": "3s",
- "Limit": 1
- }
- ],
- "IpRateLimitPolicies": {
- //ip规则
- "IpRules": [
- ]
- }
- },
- //验证码配置
- "CaptchaOptions": {
- "length": 4 //验证码长度
- }
- }
|