20 lines
375 B
JSON
20 lines
375 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Kestrel": {
|
|
"Certificates": {
|
|
"Default": {
|
|
"Store": "My",
|
|
"Location": "LocalMachine",
|
|
"Subject": "localhost", // 또는 인증서의 Thumbprint 값
|
|
"AllowInvalid": true
|
|
}
|
|
}
|
|
}
|
|
}
|