FalconSSO/FAuth/appsettings.json

24 lines
657 B
JSON
Raw Normal View History

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": {
"UseDb": "sqlserver",
"FAuthDbSqlServer": "Server=.\\SQLSERVER2008R2;Database=FAuth;User ID=sa;Password=111",
"FAuthDbMySql": "server=localhost;user id=root;password=root;persistsecurityinfo=True;database=FAuth;SslMode=none"
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
},
"urls": "http://*:9000,https://*:9001"
2020-03-30 10:12:52 +08:00
}