ASP.NET 웹을 배포하는 과정에서 Okta와 관련된 오류에 대해 알아보고 해결하는 방법에 대해 살펴보겠습니다. 특히, "IDX21323"와 관련된 오류가 발생했을 때의 대처 방법입니다.
이러한 오류를 해결하기 위해선 Web.config 파일에 특정 설정을 추가해야 합니다. 아래와 같은 내용을 Web.config 파일에 삽입하여 문제를 해결할 수 있습니다.
<system.webServer>
<rewrite>
<outboundRules>
<rule name="AddSameSiteCookieFlag">
<match serverVariable="RESPONSE_Set-Cookie" pattern="(.*)=(.*)$" />
<action type="Rewrite" value="{R:0};SameSite=none; Secure" />
</rule>
</outboundRules>
</rewrite>
</system.webServer>
ASP.NET에서 Okta 연동하기 (1) | 2023.12.22 |
---|---|
IaaS(Infrastructure as a Service), PaaS(Platform as a Service) 및 SaaS(Software as a Service) 비교 (0) | 2023.05.25 |
TLS버전 확인하기 openssl-s_client (0) | 2023.01.05 |
레지스트리 편집 (0) | 2022.11.04 |
WindowService 시작, 중지 CMD 명령 net start, net stop (0) | 2022.09.30 |
댓글 영역