We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 379c483 commit b3a4abbCopy full SHA for b3a4abb
1 file changed
router.go
@@ -14,13 +14,13 @@ func Serve(router http.Handler) error {
14
var err error
15
16
if Development {
17
- ServerHost = "0.0.0.0"
+ ServerHost = "127.0.0.1"
18
}
19
20
port := os.Getenv("PORT")
21
if port != "" {
22
ServerPort = port
23
- ServerHost = ""
+ // ServerHost = ""
24
25
connectionString := fmt.Sprintf("%s:%s", ServerHost, ServerPort)
26
0 commit comments