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