Verifies the installation of NGINX on the system.
Example
const nginxPath = verifyNginxInstallation();
if (nginxPath) {
console.log(`NGINX found at: ${nginxPath}`);
} else {
console.log('NGINX not found on system PATH or common locations.');
}
...
Module
Verifies the installation of NGINX on the system.
const nginxPath = verifyNginxInstallation();
if (nginxPath) {
console.log(`NGINX found at: ${nginxPath}`);
} else {
console.log('NGINX not found on system PATH or common locations.');
}