Files
IKAR/src/Ikar.Server/appsettings.json
T

41 lines
882 B
JSON

{
"ConnectionStrings": {
"IkarDb": "Data Source=Data/ikar.db"
},
"Jwt": {
"Issuer": "Ikar.Server",
"Audience": "Ikar.Client",
"SigningKey": "Ikar-Replace-This-Development-Key-With-A-Long-Random-Secret-CHANGE_ME_USE_SECRET_STORE_VALUE_32_CHARS_MINIMUM",
"AccessTokenLifetimeMinutes": 15,
"RefreshTokenLifetimeDays": 30
},
"Push": {
"FirebaseProjectId": "",
"ServiceAccountJsonPath": "",
"ServiceAccountJson": ""
},
"WebRtc": {
"RingingTimeoutSeconds": 60,
"MaximumCallDurationHours": 8,
"IceServers": [
{
"Urls": [
"stun:stun.l.google.com:19302"
]
}
]
},
"Admin": {
"Username": "",
"Password": ""
},
"SeedDemoData": false,
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}