26 lines
656 B
JSON
26 lines
656 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"mode": "no-docker",
|
|
"AllowedHosts": "*",
|
|
"ConnectionStringDocker": {
|
|
"Redis": "redis://redisinstance:6379",
|
|
"MySQL": "server=db;user=blueuser;password=dXjw127124dJ;database=bluedb;"
|
|
},
|
|
"ConnectionStringNoDocker": {
|
|
"Redis": "redis://localhost:6379",
|
|
"MySQL": "server=localhost;user=blueuser;password=dXjw127124dJ;database=bluedb;"
|
|
},
|
|
"AuthSettings": {
|
|
"SecretKey": "iJWHDmHLpUA283sqsfhqGbMRdRj1PVkH"
|
|
},
|
|
"JwtIssuerOptions": {
|
|
"Issuer": "SomeIssuer",
|
|
"Audience": "http://localhost:5000"
|
|
}
|
|
}
|