HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-84-generic #84-Ubuntu SMP PREEMPT_DYNAMIC Fri Sep 5 22:36:38 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //etc/apache2/sites-enabled/cial.co.uk.conf
<VirtualHost *:80>
	ServerName cial.co.uk
	ServerAlias www.cial.co.uk

	DocumentRoot /home/cial.co.uk/public_html

	ErrorLog ${APACHE_LOG_DIR}/cial.co.uk.error.log
	CustomLog ${APACHE_LOG_DIR}/cial.co.uk.access.log combined

	DirectoryIndex index.php index.html

	<Directory /home/cial.co.uk/public_html>
		AllowOverride all
		Require all granted
	</Directory>

        <FilesMatch \.php$>
                SetHandler "proxy:unix:/run/php/cialcouk.sock|fcgi://localhost/"
        </FilesMatch>


RewriteEngine on
RewriteCond %{SERVER_NAME} =cial.co.uk [OR]
RewriteCond %{SERVER_NAME} =www.cial.co.uk
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet