Question
Apache2 HTTP Ubuntu Won't Restart
Hey since I have attempted to install SSL onto my site I am unable to restart without removing it from the config.
I am running Ubuntu Ubuntu 18.04 x64
Changes for SSL:
<VirtualHost *:443>
DocumentRoot /var/www/html
ServerName my_site_name.com -- I have the actual site name here
SSLEngine on
SSLCertificateFile /ssl-files/site_name.com.crt # I have the actual cert here
SSLCertificateKeyFile /ssl-files/site_name.key # I have the actual key name here
</VirtualHost>
However when I run this I in the conf I get
Job for apache2.service failed because the control process exited with this error code.
See "systemctl status apache2.service" and "journalctl -xe" for details.
For some reason when I remove the SSL parts it works fine, I have tried purging and reinstalling apache2, with no luck.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×