SSL 인증서 갱신

뽀삐용·2023년 6월 5일
0

Linux

목록 보기
1/1

SSL 인증서 유효성 만료일 확인

  • 사이트 상단바 자물쇠 클릭

apache 상태 확인

> apachectl status
Active: active (running)

SSL conf 파일 확인 (기존 파일 경로)

> cd /etc/httpd/conf.d
> vi ssl.conf

SSL 파일 업로드

  • 기존 파일은 별도 백업

SSL conf 파일 수정 (새로운 파일 경로)

SSLCertificateFile /etc/httpd/ssl/server_crt.pem
SSLCertificateKeyFile /etc/httpd/ssl/server.key
SSLCertificateChainFile /etc/httpd/ssl/server_bundle.pem
SSLCACertificateFile /etc/httpd/ssl/server_ca.pem

apache syntax 검사 후 재시작

> apachectl -t
Syntax OK

> apachectl restart
> apachectl status
profile
하고 싶은 일 한 가지를 하려면

0개의 댓글