Browse Source

Changing to use port 80

master
Ryan Wark 4 years ago
parent
commit
449c9c2635
  1. 4
      b56.go

4
b56.go

@ -19,8 +19,8 @@ func main() {
http.Handle("/", fs)
http.HandleFunc("/next", nextId)
log.Println("Listening on :8080...")
err := http.ListenAndServe(":8080", nil)
log.Println("Listening on :80...")
err := http.ListenAndServe(":80", nil)
if err != nil {
log.Fatal(err)
}

Loading…
Cancel
Save