30 lines
687 B
JSON
30 lines
687 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"Serilog": {
|
|
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File" ],
|
|
"MinimumLevel": "Information",
|
|
"WriteTo": [
|
|
{ "Name": "Console" },
|
|
{ "Name": "File", "Args": { "path": "logs/log.txt", "rollingInterval": "Day", "retainedFileCountLimit": 7 } }
|
|
],
|
|
"Properties": {
|
|
"Application": "Embeddingsearch.Indexer"
|
|
}
|
|
},
|
|
"EmbeddingsearchIndexer": {
|
|
"Elmah": {
|
|
"AllowedHosts": [
|
|
"127.0.0.1",
|
|
"::1"
|
|
],
|
|
"LogFolder": "./logs"
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|