gobyexample/091-http-server-static/http-server-static.go
Mark McGranaghan 64aa4acf05 renumber
2012-09-23 14:31:05 -07:00

15 lines
234 B
Go

// ## HTTP Server Static
package main
import "net/http"
func main() {
handler := http.FileServer(http.Dir("./"))
http.ListenAndServe(":5000", handler)
}
// todo: index pages
// todo: disable listing
// todo: custom 404 handling