31 lines
466 B
JSON
31 lines
466 B
JSON
{
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Debug",
|
|
"Override": {
|
|
"Microsoft.AspNetCore": "Debug"
|
|
}
|
|
},
|
|
"Enrich": [
|
|
"FromLogContext",
|
|
"WithMachineName",
|
|
"WithProcessId",
|
|
"WithThreadId"
|
|
],
|
|
"WriteTo": [
|
|
{
|
|
"Name": "Console"
|
|
}
|
|
]
|
|
},
|
|
"AllowedHosts": "*",
|
|
"App": {
|
|
"Urls": [
|
|
"http://*:8888"
|
|
],
|
|
"CorsOrigins": [
|
|
"http://localhost:8888"
|
|
]
|
|
}
|
|
}
|