23 lines
527 B
JSON
23 lines
527 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"ConnectionStrings": {
|
|
"CoreDb": "Server=192.168.10.172;Port=5432;User Id=postgres;Password=postgres;Database=flawless"
|
|
},
|
|
"LocalStoragePath": "./data/development",
|
|
"User": {
|
|
"PublicRegister": true
|
|
},
|
|
"Jwt": {
|
|
"SecretKey": "your_256bit_security_key_at_here_otherwise_not_bootable",
|
|
"Issuer": "test",
|
|
"ExpiresIn": 30,
|
|
"RefreshTokenLifeTime": 7
|
|
}
|
|
}
|