@fullstax/apache-restart
v0.1.0-beta.0
Published
restart the local apache daemon
Downloads
1
Readme
apache-restart
Restart the local apache webserver daemon.
This is a UNTESTED beta release! Please use with caution!
Feel free to open github issues and help with the implmentation!
Setup
npm install apache-restart
Usage cli
apache-restart --hard --verbose
Usage node
const restartApache = require('apache-restart');
try {
await restartApache();
} catch(err) {
console.error('Error restarting apache:', err);
}