You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
888 B
Go
36 lines
888 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
)
|
|
|
|
func serve(args []string) {
|
|
// listen on this unix domain socket
|
|
socketPath := ""
|
|
|
|
// serve modules out of this root directory
|
|
rootDir := "/srv/mir"
|
|
|
|
// serve module traffic on this hostname
|
|
hostname := ""
|
|
|
|
httpAddr := ""
|
|
|
|
serveFlags := flag.NewFlagSet("serve", flag.ExitOnError)
|
|
serveFlags.StringVar(&socketPath, "unix", socketPath, "path for a unix domain socket to listen on")
|
|
serveFlags.StringVar(&httpAddr, "http", httpAddr, "http address to listen on")
|
|
serveFlags.StringVar(&rootDir, "root", rootDir, "root directory for module storage")
|
|
serveFlags.StringVar(&hostname, "hostname", hostname, "domain name on which mir serves modules")
|
|
serveFlags.Parse(args)
|
|
|
|
h := handler{
|
|
socketPath: socketPath,
|
|
httpAddr: httpAddr,
|
|
root: rootDir,
|
|
hostname: hostname,
|
|
}
|
|
if err := h.run(); err != nil {
|
|
bail(1, err.Error())
|
|
}
|
|
}
|