Vagrant Jekyll serve not available -
i decided try jekyll, have not used encountered problem. when serve "this webpage not available" on http://127.0.0.1:4000/. i'm using vagrant.
vagrant@ruby-jekyll-box:~$ jekyll new portfolio new jekyll site installed in /home/vagrant/portfolio. vagrant@ruby-jekyll-box:~$ cd portfolio/ vagrant@ruby-jekyll-box:~/portfolio$ jekyll serve configuration file: /home/vagrant/portfolio/_config.yml source: /home/vagrant/portfolio destination: /home/vagrant/portfolio/_site generating... done. auto-regeneration: enabled '/home/vagrant/portfolio' configuration file: /home/vagrant/portfolio/_config.yml server address: http://127.0.0.1:4000/ server running... press ctrl-c stop. what doing wrong?
are trying access inside vagrant box? or computer running vm on? 127.0.0.1 localhost/loopback 127.0.0.1 inside vagrant box not same 127.0.0.1 on computer.
try
jekyll serve --host=0.0.0.0 and accessing host computer @ http://ip.of.vagrant.box:4000/
Comments
Post a Comment