mirror of https://github.com/perkeep/perkeep.git
Merge remote branch 'origin/master' into python
This commit is contained in:
commit
e39b482a42
|
@ -49,6 +49,7 @@ func handleRoot(conn http.ResponseWriter, req *http.Request) {
|
||||||
fmt.Fprintf(conn, "Hi.\n")
|
fmt.Fprintf(conn, "Hi.\n")
|
||||||
} else {
|
} else {
|
||||||
fmt.Fprintf(conn, "This is camlistored, a Camlistore storage daemon.\n");
|
fmt.Fprintf(conn, "This is camlistored, a Camlistore storage daemon.\n");
|
||||||
|
fmt.Fprintf(conn, "<p><a href=/js>js interface</a>");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,6 +76,7 @@ func main() {
|
||||||
mux := http.NewServeMux()
|
mux := http.NewServeMux()
|
||||||
mux.HandleFunc("/", handleRoot)
|
mux.HandleFunc("/", handleRoot)
|
||||||
mux.HandleFunc("/camli/", handleCamli)
|
mux.HandleFunc("/camli/", handleCamli)
|
||||||
|
mux.Handle("/js/", http.FileServer("../../clients/js", "/js/"))
|
||||||
|
|
||||||
fmt.Printf("Starting to listen on http://%v/\n", *listen)
|
fmt.Printf("Starting to listen on http://%v/\n", *listen)
|
||||||
err := http.ListenAndServe(*listen, mux)
|
err := http.ListenAndServe(*listen, mux)
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
|
|
||||||
mkdir /tmp/camliroot
|
mkdir /tmp/camliroot
|
||||||
export CAMLI_PASSWORD=foo
|
export CAMLI_PASSWORD=foo
|
||||||
make && ./camlistored
|
make && ./camlistored "$@"
|
||||||
|
|
Loading…
Reference in New Issue