File: //etc/apache2/sites-enabled/christest.co.uk.conf
<VirtualHost *:80>
ServerName christest.co.uk
ServerAlias www.christest.co.uk
DocumentRoot /home/christest.co.uk/public_html
ErrorLog ${APACHE_LOG_DIR}/christest.co.uk.error.log
CustomLog ${APACHE_LOG_DIR}/christest.co.uk.access.log combined
DirectoryIndex index.php index.html index.htm
<Directory /home/christest.co.uk/public_html>
AllowOverride all
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/christestcouk.sock|fcgi://localhost/"
</FilesMatch>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet