Skip to content

Instantly share code, notes, and snippets.

@farhany
Created April 21, 2019 20:31
Show Gist options
  • Save farhany/d6234d2602b49af97affba23d92e81a6 to your computer and use it in GitHub Desktop.
Save farhany/d6234d2602b49af97affba23d92e81a6 to your computer and use it in GitHub Desktop.
httpServer-timeout
s := &http.Server{
Addr: ":8080",
Handler: myHandler,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
MaxHeaderBytes: 1 << 20,
}
log.Fatal(s.ListenAndServe())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment