gobyexample/085-http-server-static/http-server-static.go
Mark McGranaghan 434392e67c index work
2012-09-23 14:54:59 -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