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