File: //etc/apache2/sites-enabled/fcahome.org.uk-le-ssl.conf
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName fcahome.org.uk
ServerAlias www.fcahome.org.uk
DocumentRoot /home/fcahome.org.uk/public_html
ErrorLog ${APACHE_LOG_DIR}/fcahome.org.uk.error.log
CustomLog ${APACHE_LOG_DIR}/fcahome.org.uk.access.log combined
DirectoryIndex index.php index.html index.htm
<Directory /home/fcahome.org.uk/public_html>
AllowOverride all
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/fcahomeorguk.sock|fcgi://localhost/"
</FilesMatch>
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/fcahome.org.uk/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/fcahome.org.uk/privkey.pem
</VirtualHost>
</IfModule>