Skip to content

Instantly share code, notes, and snippets.

@smallnest
Forked from nguyendangminh/favicon.ico.go
Created July 30, 2023 08:14
Show Gist options
  • Save smallnest/c6e0d4688351574cd385b37c63c90190 to your computer and use it in GitHub Desktop.
Save smallnest/c6e0d4688351574cd385b37c63c90190 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)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment