Apache *.pem does not exist or is empty エラー現象の解決方法

環境
Apache 2.4
Let7s Encrypt

エラー現象
$ apachectl configtest
Syntax error on line XX of /path/to/ssl.conf:
SSLCertificateFile: file '/path/to/cert.pem’ does not exist or is empty

原因
パーミッションが足りない

解決方法
1.chmodでパーミッションを「755」に変更する
$ sudo chmod 755 /etc/letsencrypt/archive/
$ sudo chmod 755 /etc/letsencrypt/live/

2.「apachectl configtest」を実行する
$ apachectl configtest
Syntax OK

Apache

Posted by arkgame