CodeLiturgy.Dashboard/BlueWest.Api/appsettings.json

22 lines
525 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": "*",
"ConnectionStrings": {
2022-09-06 07:54:48 +03:00
"DockerMySQL": "server=db;user=blueuser;password=dXjw127124dJ;database=bluedb;"
2022-09-10 07:12:03 +03:00
},
2022-09-17 22:13:35 +03:00
"REDIS_CONNECTION_STRING": "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
}