Skip to content

Instantly share code, notes, and snippets.

@nguyendangminh
Last active November 9, 2024 08:01
Show Gist options
  • Save nguyendangminh/bd6e1e01df3c6cff139b1609fc1a646c to your computer and use it in GitHub Desktop.
Save nguyendangminh/bd6e1e01df3c6cff139b1609fc1a646c to your computer and use it in GitHub Desktop.
Serve favicon.ico in Golang
...
func faviconHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "relative/path/to/favicon.ico")
}
...
func main() {
http.HandleFunc("/favicon.ico", faviconHandler)
}
@cristianvnica
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment