VirtFusion Unified

Setup guide for connecting your VirtFusion node to this license server.

account.virtfusion.com
verify.vfn.app
1
DNS / Hosts Configuration
Point the VirtFusion domains to this server.

Add the following entries to /etc/hosts on your VirtFusion node:

echo "SERVER_IP verify.vfn.app" >> /etc/hosts
echo "SERVER_IP account.virtfusion.com" >> /etc/hosts

Replace SERVER_IP with the IP address of this server.

2
Trust the CA Certificate
Install the root CA so your node trusts this server's TLS.

Download the CA certificate and add it to the system trust store:

curl -o /usr/local/share/ca-certificates/vfcom.crt https://vfcom.ts33.eu.org/api/public/ca.pem
update-ca-certificates --fresh
3
Install the PHP Extension
Load the license verification module into PHP.

Copy the shared library and enable it in your PHP configuration:

cp nitrophp.so /opt/virtfusion/php8/modules/
echo 'extension=nitrophp.so' > /opt/virtfusion/php8/conf/conf.d/99-nitrophp.ini

Restart the application to apply:

vfcli-ctrl app:restart