FalconSSO/FAuth/appsettings.json

33 lines
958 B
JSON
Raw Normal View History

2020-04-26 14:49:31 +08:00
{
2020-03-30 10:12:52 +08:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
2020-04-22 20:59:52 +08:00
"Database": {
2020-04-24 13:39:31 +08:00
"UseDb": "mysql",
2020-04-22 20:59:52 +08:00
"FAuthDbSqlServer": "Server=.\\SQLSERVER2008R2;Database=FAuth;User ID=sa;Password=111",
2020-04-24 13:39:31 +08:00
"FAuthDbMySql": "Server=localhost;Port=3306;Database=FAuth;Uid=falcon;Pwd=falcon;"
2020-03-30 10:12:52 +08:00
},
"Redis": {
"InstanceName": "",
"Configuration": "127.0.0.1:7001,password=123654"
},
"UserTicketDecryptorOption": {
"Key": "abcd"
2020-04-22 17:52:22 +08:00
},
2020-04-26 14:49:31 +08:00
"urls": "http://*:9000;https://*:9001",
"SwaggerDoc": {
"Title": "Falcon SSO 统一登录接口文档",
"Version": "1.0",
"Description": "统一采用API接口设计查看下面详细接口规范。",
2020-04-26 14:49:31 +08:00
"Contact": {
"Name": "技术支持(点击链接,发布工单)",
"Url": "http://39.105.71.191/Falcon/FalconSSO/issues"
}
}
2020-03-30 10:12:52 +08:00
}