ssl 관련 질문입니다.
본문
어찌어찌 ssl 인증서를 만들어서 적용하고, url도 https로 다 바꿨는데, https로 로드해봤더니 페이지가 끝까지 로드되지 않습니다.
http로 로드해도 안되는데, 이게 어떻게 된 건가요?
+ 오랫동안 기다려보니,
Some resource load requests were throttled while the tab was in background, and no request was sent from the queue in the last 1 minute. This means previously requested in-flight requests haven't received any response from servers. See "https://www.chromestatus.com/feature/5527160148197376" for more details
이런게 콘솔에 출력됩니다.
!-->답변 3
SSL 와이드 도메인 신청이 아니라면
ServerAlias *.choyunjin.kr 로 사용 하시면 안됩니다
아래 처럼 바꾸고 아파치 재시작 해보세요.
Listen 443
<VirtualHost *:443>
ServerName choyunjin.kr
ServerAlias www.choyunjin.kr
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCertificateKeyFile /인증서파일경로/privkey.pem
SSLCertificateChainFile /인증서파일경로/chain.pem
SSLCertificateFile /인증서파일경로/cert.pem
</VirtualHost>
!-->
서버에 SSL 인증서 설치한후 http에 연동 부분이 제대로 반영이 된건지 확인해 보셔야 할듯 합니다.
config.php 에서 주소를 바꿔도 안되나요?
define('G5_DOMAIN', 'https://choyunjin.kr');
define('G5_HTTPS_DOMAIN', 'https://choyunjin.kr');
이렇게 둘다 https로 바꿔주면 됩니다.
아파치 부분에서 에러가 난다면 아파치의 error.log 파일을 보시면 될 것 같습니다.
보통 /var/log에 있어요.
답변을 작성하시기 전에 로그인 해주세요.