ssl 관련 질문입니다. 채택완료
어찌어찌 ssl 인증서를 만들어서 적용하고, url도 https로 다 바꿨는데, https로 로드해봤더니 페이지가 끝까지 로드되지 않습니다.
http로 로드해도 안되는데, 이게 어떻게 된 건가요?
https://choyunjin.kr">HTTPS (https://choyunjin.kr)
http://choyunjin.kr">HTTP (http://choyunjin.kr)
+ 오랫동안 기다려보니,
</p>
<p>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 "<a href="https://www.chromestatus.com/feature/5527160148197376" for" target="_blank" rel="noopener noreferrer">https://www.chromestatus.com/feature/5527160148197376" for</a> more details</p>
<p>
이런게 콘솔에 출력됩니다.
답변 3개
SSL 와이드 도메인 신청이 아니라면
ServerAlias *.choyunjin.kr 로 사용 하시면 안됩니다
아래 처럼 바꾸고 아파치 재시작 해보세요.
</p>
<p>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></p>
<article id="sir_qav">
<section id="vbo_con">
<table>
<tbody>
</tbody>
</table>
</section>
</article>
<p>
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
config.php 에서 주소를 바꿔도 안되나요?
define('G5_DOMAIN', 'https://https://choyunjin.kr/" rel="nofollow noreferrer noopener" target="_blank">choyunjin.kr'); define('G5_HTTPS_DOMAIN', 'https://https://choyunjin.kr/" rel="nofollow noreferrer noopener" target="_blank">choyunjin.kr');
이렇게 둘다 https로 바꿔주면 됩니다.
아파치 부분에서 에러가 난다면 아파치의 error.log 파일을 보시면 될 것 같습니다.
보통 /var/log에 있어요.
댓글을 작성하려면 로그인이 필요합니다.
답변에 대한 댓글 1개
Listen 443
<VirtualHost *:443>
ServerName choyunjin.kr
ServerAlias *.choyunjin.kr
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCertificateKeyFile /인증서파일경로/privkey.pem
SSLCertificateChainFile /인증서파일경로/chain.pem
SSLCertificateFile /인증서파일경로/cert.pem
</VirtualHost>
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
+ Let's encrypt 와일드카드 인증서입니다...