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