OpenAuth.Net/OpenAuth.Mvc/appsettings.json
yubaolee 452de01fb8 fix #I3SKUV 增加API和EF执行效率的监控
新增流程修改接口
增加启动及撤销判定
2021-05-25 00:49:12 +08:00

25 lines
978 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"Logging": {
"LogLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "*",
"DataProtection": "temp-keys/",
"ConnectionStrings": {
"OpenAuthDBContext": "Data Source=.;Initial Catalog=OpenAuthDB;User=sa;Password=000000"
//"OpenAuthDBContext": "server=127.0.0.1;user id=root;database=openauthdb;password=000000" //my sql
},
"AppSetting": {
//"IdentityServerUrl": "http://localhost:12796", //IdentityServer服务器地址。如果为空则不启用OAuth认证
"IdentityServerUrl": "", //IdentityServer服务器地址。如果为空则不启用OAuth认证
"SSOPassport": "http://localhost:52789",
"Version": "1.0", //如果为demo则可以防止post提交
"DbTypes": {
"OpenAuthDBContext":"SqlServer" //数据库类型SqlServer、MySql、Oracle
},
"RedisConf": "redistest.cq-p.com.cn:8001,password=share_redis@123", //redis配置
"HttpHost": "http://*:1802" //启动绑定地址及端口
}
}