I've recently updated gulp-connect and the following script now start an https server instead of http. What i'm doing wrong?
var gulp = require('gulp'),
    connect = require('gulp-connect');
gulp.task('webserver', function () {
    debugger;
    connect.server({
        host:'localhost',
        root: 'app',
        port: 5000
    });
});
gulp.task('default', ['webserver']);
				
                        
Try this: