Connect to a locally built Jekyll Server using mobile devices in the LAN
问题 After using jekyll serve on one machine, a WEBrick server is set up and the site can be accessed from localhost:4000 on this particular PC. However, I'm wondering how to access this web server from other machines in the LAN, especially for mobile devices? I'm trying to test the jekyll site on mobile devices before pushing the code to Github. 回答1: Try jekyll serve --host=0.0.0.0 when you invoke Jekyll on the command line. That will make Jekyll's HTTP server bind to all available IPs, rather