Skip to content

Additional settings in config.php

There are several additional options that can be configured through /whmcs_root/modules/servers/solusvm2vps/config.php:

return [
    'delete_solus_user' => false,
    'default_domain' => [
        'enabled' => false,
        'mask' => '*.example.com',
    ],
];

'delete_solus_user' - if true - removes user account in SolusVM 2 if corresponding account is removed from WHMCS.

'default_domain' - configures the default domain template in case the hostname is not set during product creation.

Options:

'enabled' - specifies if feature is enabled.

'mask' - the domain template in format *.example.com where * will be replaced with vps-{serviceId} when product is created.

Back to top