mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
add -www option to example server
This commit is contained in:
parent
8dea856cad
commit
a079b3e662
1 changed files with 2 additions and 3 deletions
|
@ -20,6 +20,7 @@ func main() {
|
||||||
bindTo := flag.String("bind", "localhost", "bind to")
|
bindTo := flag.String("bind", "localhost", "bind to")
|
||||||
certPathDefault := os.Getenv("GOPATH") + "/src/github.com/lucas-clemente/quic-go/example/"
|
certPathDefault := os.Getenv("GOPATH") + "/src/github.com/lucas-clemente/quic-go/example/"
|
||||||
certPath := flag.String("certpath", certPathDefault, "certificate directory")
|
certPath := flag.String("certpath", certPathDefault, "certificate directory")
|
||||||
|
www := flag.String("www", "/var/www", "www data")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
server, err := quic.NewServer(*certPath+"cert.der", *certPath+"key.der", handleStream)
|
server, err := quic.NewServer(*certPath+"cert.der", *certPath+"key.der", handleStream)
|
||||||
|
@ -27,9 +28,7 @@ func main() {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
http.Handle("/", http.FileServer(http.Dir(*www)))
|
||||||
w.Write([]byte("Hello world!"))
|
|
||||||
})
|
|
||||||
|
|
||||||
err = server.ListenAndServe(*bindTo + ":6121")
|
err = server.ListenAndServe(*bindTo + ":6121")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue