Skip to content

Instantly share code, notes, and snippets.

@ngopal
Created October 7, 2013 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngopal/6872708 to your computer and use it in GitHub Desktop.
Save ngopal/6872708 to your computer and use it in GitHub Desktop.
Simple server in golang. Build with go and run ./simpleserver. Pages will be served @ http://localhost:8080/elysianIPA
package main
import (
"fmt"
"net/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Why in the world are you looking for %s on your localhost? lolz.", r.URL.Path[1:])
}
func main() {
http.HandleFunc("/", handler)
http.ListenAndServe(":8080", nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment