itfx/src/InterfaceForward.Api/appsettings.json
2024-05-16 01:56:29 +09:00

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"
]
}
}