Files
parr_api/PARR.API/appsettings.json

34 lines
689 B
JSON
Raw Normal View History

2023-05-17 15:17:00 +10:00
{
2023-05-17 16:00:50 +10:00
"ConnectionStrings": {
2023-05-17 16:30:13 +10:00
"DefaultConnection": "Server=10.99.253.184;Database=parr;User Id=app_parr; Password=PosdfkhT&)%sdfligL&%5546;"
2023-05-17 16:00:50 +10:00
},
2023-05-17 15:17:00 +10:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
2023-05-17 16:00:50 +10:00
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "log/log-.txt",
"rollingInterval": "Day"
}
}
]
},
"AllowedHosts": "*",
"CorsSettings": {
"AllowedHosts": "*"
}
2023-05-17 15:17:00 +10:00
}