CodeLiturgy.Dashboard/BlueWest.Api/appsettings.json

26 lines
673 B
JSON
Raw Normal View History

2021-12-06 02:49:27 +03:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
2022-08-04 03:59:04 +03:00
"AllowedHosts": "*",
2022-09-18 04:00:24 +03:00
"ConnectionStringDocker": {
"MySQL": "server=db;user=blueuser;password=dXjw127124dJ;database=bluedb;",
"Redis": "redis://redisinstance:6379"
2022-09-10 07:12:03 +03:00
},
2022-09-18 04:00:24 +03:00
"ConnectionStringNoDocker": {
"MySQL": "server=localhost;user=blueuser;password=dXjw127124dJ;database=bluedb;",
"Redis": "redis://localhost:6379"
},
2022-09-10 07:12:03 +03:00
"AuthSettings": {
2022-09-10 07:28:41 +03:00
"SecretKey": "iJWHDmHLpUA283sqsfhqGbMRdRj1PVkH"
2022-09-17 22:13:35 +03:00
},
"JwtIssuerOptions": {
"Issuer": "SomeIssuer",
"Audience": "http://localhost:5000"
2022-08-04 03:59:04 +03:00
}
2021-12-06 02:49:27 +03:00
}