mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add usage instructions to readme
This commit is contained in:
parent
f4ac8ff949
commit
a141c31c69
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
@ -55,3 +55,15 @@ Using the `quic_client` from chromium:
|
|||
Using Chrome (currently does not work due to version mismatch):
|
||||
|
||||
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir=/tmp/chrome --no-proxy-server --enable-quic --origin-to-force-quic-on=quic.clemente.io:443 --host-resolver-rules='MAP quic.clemente.io:443 127.0.0.1:6121' https://quic.clemente.io
|
||||
|
||||
## Usage
|
||||
|
||||
See the [example server](example/main.go) or our [fork](https://github.com/lucas-clemente/caddy) of caddy. Starting a QUIC server is very similar to the standard lib http in go:
|
||||
|
||||
```go
|
||||
http.Handle("/", http.FileServer(http.Dir(wwwDir)))
|
||||
|
||||
server, _ := h2quic.NewServer(tlsConfig)
|
||||
|
||||
server.ListenAndServe("localhost:4242", nil /* use http.DefaultServeMux */)
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue