mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47: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")
|
||||
certPathDefault := os.Getenv("GOPATH") + "/src/github.com/lucas-clemente/quic-go/example/"
|
||||
certPath := flag.String("certpath", certPathDefault, "certificate directory")
|
||||
www := flag.String("www", "/var/www", "www data")
|
||||
flag.Parse()
|
||||
|
||||
server, err := quic.NewServer(*certPath+"cert.der", *certPath+"key.der", handleStream)
|
||||
|
@ -27,9 +28,7 @@ func main() {
|
|||
panic(err)
|
||||
}
|
||||
|
||||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Write([]byte("Hello world!"))
|
||||
})
|
||||
http.Handle("/", http.FileServer(http.Dir(*www)))
|
||||
|
||||
err = server.ListenAndServe(*bindTo + ":6121")
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue