A cli tool to quickly create and manage nginx server blocks.
https://up.js.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
323 B
19 lines
323 B
'use strict';
|
|
|
|
const { execSync } = require('child_process');
|
|
|
|
function nginxReload() {
|
|
try {
|
|
execSync('service nginx reload', {
|
|
stdio: 'ignore'
|
|
});
|
|
execSync('service nginx start', {
|
|
stdio: 'ignore'
|
|
});
|
|
} catch (err) {
|
|
throw new Error('nginx failed to load');
|
|
}
|
|
return;
|
|
}
|
|
|
|
module.exports = nginxReload;
|
|
|