1
0
mirror of https://github.com/strongdm/comply synced 2024-06-30 22:14:22 +00:00

all interfaces

This commit is contained in:
Justin McCarthy 2019-03-16 00:21:01 -07:00
parent edd3c7dd44
commit 9bcc88eebc
No known key found for this signature in database
GPG Key ID: 900437410E142A48

View File

@ -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)
}