gobyexample/081-http-server-static/http-server-static.go
Mark McGranaghan d7045c962c index
2012-09-23 17:49:22 -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