File size: 596 Bytes
fc06b79 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | {
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.EntityFrameworkCore": "Information"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Data Source=ContactManagement.db"
},
"FileUpload": {
"MaxPhotoSize": 5242880,
"MaxDocumentSize": 10485760,
"AllowedPhotoExtensions": [ ".jpg", ".jpeg", ".png", ".gif", ".bmp" ],
"AllowedDocumentExtensions": [ ".pdf", ".doc", ".docx", ".xls", ".xlsx", ".txt", ".ppt", ".pptx" ],
"PhotoUploadPath": "uploads/photos",
"DocumentUploadPath": "uploads/documents"
}
}
|