mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
26 lines
1.1 KiB
JSON
26 lines
1.1 KiB
JSON
{
|
||
"Logging": {
|
||
"LogLevel": {
|
||
"Default": "Warning"
|
||
}
|
||
},
|
||
"AllowedHosts": "*",
|
||
"DataProtection": "temp-keys/",
|
||
"ConnectionStrings": {
|
||
// "OpenAuthDBContext": "Data Source=.;Encrypt=false;Initial Catalog=OpenAuthDB;User=sa;Password=000000"
|
||
"OpenAuthDBContext": "server=127.0.0.1;user id=root;database=openauthdb;password=000000" //my sql
|
||
//"OpenAuthDBContext": "Host=localhost;Port=5432;Database=OpenAuth;Username=postgres;Password=123;" //PostgreSQL
|
||
},
|
||
"AppSetting": {
|
||
//"IdentityServerUrl": "http://localhost:12796", //IdentityServer服务器地址。如果为空,则不启用OAuth认证
|
||
"IdentityServerUrl": "", //IdentityServer服务器地址。如果为空,则不启用OAuth认证
|
||
"SSOPassport": "http://localhost:52789",
|
||
"Version": "1.0", //如果为demo,则可以防止post提交
|
||
"DbTypes": {
|
||
"OpenAuthDBContext": "MySql" //数据库类型:SqlServer、MySql、Oracle、PostgreSQL
|
||
},
|
||
"RedisConf": "redistest.cq-p.com.cn:8001,password=share_redis@123", //redis配置
|
||
"HttpHost": "http://*:1802" //启动绑定地址及端口
|
||
}
|
||
}
|