From a7e64c84aec65fe38b5a9323638e62d513b64ce8 Mon Sep 17 00:00:00 2001
From: "Patrick H. Lauke" <redux@splintered.co.uk>
Date: Mon, 11 Dec 2017 01:32:37 +0000
Subject: [PATCH] Specify host 0.0.0.0 for Jekyll (#24974)

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 a749091cf9..10fe046434 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"
-- 
GitLab