Compare commits
2 Commits
b022c55a5a
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 07236521b1 | |||
| fe6f1a19af |
2
.gitignore
vendored
2
.gitignore
vendored
@ -237,7 +237,7 @@ ClientBin/
|
|||||||
*.dbmdl
|
*.dbmdl
|
||||||
*.dbproj.schemaview
|
*.dbproj.schemaview
|
||||||
*.jfm
|
*.jfm
|
||||||
*.pfx
|
#*.pfx
|
||||||
*.publishsettings
|
*.publishsettings
|
||||||
orleans.codegen.cs
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
|||||||
@ -5,5 +5,15 @@
|
|||||||
"Microsoft.AspNetCore": "Warning"
|
"Microsoft.AspNetCore": "Warning"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"AllowedHosts": "*"
|
"AllowedHosts": "*",
|
||||||
|
"Kestrel": {
|
||||||
|
"Certificates": {
|
||||||
|
"Default": {
|
||||||
|
"Store": "My",
|
||||||
|
"Location": "LocalMachine",
|
||||||
|
"Subject": "localhost", // 또는 인증서의 Thumbprint 값
|
||||||
|
"AllowInvalid": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
BIN
SSL/localhost.pfx
Normal file
BIN
SSL/localhost.pfx
Normal file
Binary file not shown.
27
SSL/인증서 설정.txt
Normal file
27
SSL/인증서 설정.txt
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Reference in New Issue
Block a user