From 457594bdd1bd64b4da246b69a69a14b9b3495e00 Mon Sep 17 00:00:00 2001 From: patrickhlauke Date: Fri, 8 Dec 2017 13:10:23 +0000 Subject: [PATCH] Specify host 0.0.0.0 for Jekyll Allows for remote connections on same network (as Jekyll now seems to default to 127.0.0.1 which means it does not react to incoming external requests) --- _config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/_config.yml b/_config.yml index a749091cf98a..10fe046434b5 100644 --- a/_config.yml +++ b/_config.yml @@ -11,6 +11,7 @@ permalink: pretty # Server source: "." destination: ./_gh_pages +host: 0.0.0.0 port: 9001 baseurl: "" url: "https://getbootstrap.com"