에러

원인 : https → http(ws)로의 요청
해결 : 소켓 서버에 https(wss) 적용
에러
NET::ERR_CERT_AUTHORITY_INVALID
원인 : self-signed 인증서 사용 (OpenSSL 소프트웨어)
If the certificate you are using is self-signed, browsers will not be able to check its validity. This means that they will treat it as non valid SSL certificate and will display an ERR_CERT_AUTHORITY_INVALID error warning the users trying to access your site.
You’re using a self-signed SSL certificate. Using a self-signed certificate can save you money, but since browsers can’t verify its validity, your visitors may run into the error in question. Browser warnings can scare a lot of users away, so we recommend against this approach.
해결
백엔드 도메인 발급 및 적용
공인 CA(인증서 발급 기관 ex.Let’s Encrypt)를 통해 백엔드 도메인에 대한 ssl 인증서 발급
SSL 인증서는 특정 소유자에게 권한이 있는 정식으로 등록된 정규 도메인을 대상으로만 발급이 가능하며, 전세계 공용 자산인 IP 주소는 특정인에게 소유권이 할당되지 않았으므로 SSL 인증서 발급은 가능하지 않습니다.
nginx를 통한 ssl 설정 : 페이지 이동
ERR_SSL_PROTOCOL_ERROR
(SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER)