From 9bcc88eebcf84c32ced2b5a9e4ab4e740bd7ae85 Mon Sep 17 00:00:00 2001 From: Justin McCarthy Date: Sat, 16 Mar 2019 00:21:01 -0700 Subject: [PATCH] all interfaces --- internal/render/site.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/render/site.go b/internal/render/site.go index ca354ac..0fb2407 100644 --- a/internal/render/site.go +++ b/internal/render/site.go @@ -94,7 +94,7 @@ func Build(output string, live bool) error { go func() { http.Handle("/", http.FileServer(http.Dir(filepath.Join(".", "output")))) - err := http.ListenAndServe(fmt.Sprintf("127.0.0.1:%d", ServePort), nil) + err := http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", ServePort), nil) if err != nil { panic(err) }