hiddentao / gulp-server-livereload

Gulp plugin to run a local webserver with livereload enabled via socket.io. Also comes with standalone command-line interface.
MIT License
93 stars 28 forks source link

specify launch domain setting request #18

Closed landed1 closed 8 years ago

landed1 commented 9 years ago

I am trying to do something like this as locally the 0.0.0.0 address will fail - localhost works but i want to kind of launch right into local though setting 0.0.0.0 so I can browse across the DOMAIN network on my device...

.pipe(server({ livereload: true, directoryListing: false, open: true, host:'0.0.0.0', defaultFile: 'localhost:8000/index.html' })); });

hiddentao commented 8 years ago

0.0.0.0 should definitely work, I've been using that myself for a while.

landed1 commented 8 years ago

Thanks.