mirror of
https://github.com/strongdm/comply
synced 2024-11-05 15:35:25 +00:00
Fix for inconsistency between address we bind to and address we say we bind to (refs #113).
This commit is contained in:
parent
ecc021985e
commit
c959617bf6
@ -13,6 +13,8 @@ import (
|
||||
"github.com/yosssi/ace"
|
||||
)
|
||||
|
||||
const BindAddress = "0.0.0.0"
|
||||
|
||||
var ServePort int
|
||||
|
||||
var upgrader = websocket.Upgrader{
|
||||
@ -94,13 +96,13 @@ func Build(output string, live bool) error {
|
||||
|
||||
go func() {
|
||||
http.Handle("/", http.FileServer(http.Dir(filepath.Join(".", "output"))))
|
||||
err := http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", ServePort), nil)
|
||||
err := http.ListenAndServe(fmt.Sprintf("%s:%d", BindAddress, ServePort), nil)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}()
|
||||
|
||||
fmt.Printf("Serving content of output/ at http://127.0.0.1:%d (ctrl-c to quit)\n", ServePort)
|
||||
fmt.Printf("Serving content of output/ at http://%s:%d (ctrl-c to quit)\n", BindAddress, ServePort)
|
||||
}
|
||||
// PDF
|
||||
wg.Add(1)
|
||||
|
Loading…
Reference in New Issue
Block a user