28 lines
532 B
Plaintext
28 lines
532 B
Plaintext
appsettings.json에
|
|
비밀번호: localhost
|
|
|
|
//로컬머신
|
|
"Kestrel": {
|
|
"Certificates": {
|
|
"Default": {
|
|
"Store": "My",
|
|
"Location": "LocalMachine",
|
|
"Subject": "localhost", // 또는 인증서의 Thumbprint 값
|
|
"AllowInvalid": true
|
|
}
|
|
}
|
|
}
|
|
|
|
//현재사용자
|
|
"Kestrel": {
|
|
"Certificates": {
|
|
"Default": {
|
|
"Store": "My",
|
|
"Location": "CurrentUser",
|
|
"Subject": "localhost", // 또는 인증서의 Thumbprint 값
|
|
"AllowInvalid": true
|
|
}
|
|
}
|
|
}
|
|
|