Hello,
I am using CyberPanel with LSWS Enterprise to setup a WordPress Multisite.
I followed the tutorial to add a virtual host, but encountered this error
and the vhost conf from CyberPanel is:
	
	
	
		
How to solve this error?
Many thanks
								I am using CyberPanel with LSWS Enterprise to setup a WordPress Multisite.
I followed the tutorial to add a virtual host, but encountered this error
and the vhost conf from CyberPanel is:
		Code:
	
	<VirtualHost *:80>
    ServerName xxx.com
    ServerAlias www.xxx.com
    ServerAdmin xxx@xxx.com
    SuexecUserGroup xxc xxc
    DocumentRoot /home/xxx.com/public_html
    CustomLog /home/xxx.com/logs/xxx.com.access_log combined
    AddHandler application/x-httpd-php73 .php .php7 .phtml
    <IfModule LiteSpeed>
        CacheRoot lscache
    </IfModule>
</VirtualHost>
<VirtualHost *:443>
    ServerName xxx.com
    ServerAlias www.xxx.com
    ServerAdmin xxx@xxx.com
    SuexecUserGroup xxxc xxxc
    DocumentRoot /home/xxx.com/public_html
    CustomLog /home/xxx.com/logs/xxx.com.access_log combined
    <IfModule LiteSpeed>
        CacheRoot lscache
    </IfModule>
    SSLEngine on
    SSLVerifyClient none
    SSLCertificateFile /etc/letsencrypt/live/xxx.com/fullchain.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/xxx.com/privkey.pem
    AddHandler application/x-httpd-php73 .php .php7 .phtml
</VirtualHost>
	Many thanks