You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
STARTING FROM C:\dev\myapp\Web\conf\nginx.conf
fs.js:1315
throw error;
^
Error: watch /run ENOENT
at exports._errnoException (util.js:890:11)
at FSWatcher.start (fs.js:1313:19)
at Object.fs.watch (fs.js:1341:11)
at ReadFileContext.callback (C:\dev\myapp\Web\node_modules\nginx-o\lib\Lifecycle.js:32:23)
at FSReqWrap.readFileAfterOpen [as oncomplete] (fs.js:324:13)
my setup looks like this:
gulp.task('start:web', function(done){
var path = require('path');
var dir = path.resolve(__dirname, '../', 'conf/nginx.conf');
console.log('STARTING FROM', dir)
var nginx = new Nginx({
confDir: dir
});
nginx.on('started', function () {
console.log('nginx has started');
done();
});
nginx.on('stopped', function () { console.log('nginx has stopped'); });
});
I'm running on windows 10, starting manually works fine.
The text was updated successfully, but these errors were encountered:
Everytime I try to run, I get the following:
my setup looks like this:
I'm running on windows 10, starting manually works fine.
The text was updated successfully, but these errors were encountered: