Go to file
Caleb Vorderbruggen 194cb62412 initial
2022-04-18 18:13:53 -04:00
go.mod initial 2022-04-18 18:13:53 -04:00
go.sum initial 2022-04-18 18:13:53 -04:00
handler.go initial 2022-04-18 18:13:53 -04:00
LICENSE initial 2022-04-18 18:13:53 -04:00
README.md initial 2022-04-18 18:13:53 -04:00

Handler

Provides simple HTTP file server; Its so simple to do with golang; looks like nobody bothers to provide a ready-to-download package to actually do it.

Examples

Calling without any arguments defaults to serving ./ at 0.0.0.0:8080

Changing default settings

  • a sets ip address
  • p sets port
  • d sets directory to serve
$ ./handler -a 127.0.0.1 -p 3000 -d ./foo/bar