gulp-connect start https server instead of http

2.7k Views Asked by At

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']);
1

There are 1 best solutions below

1
On

Try this:

connect.server({
        host:'localhost',
        root: 'app',
        port: 5000,
        https: false,
    });