# Bukdu, how to display favicon.ico

**URL:** https://discourse.julialang.org/t/bukdu-how-to-display-favicon-ico/54123
**Category:** Community
**Tags:** question, package
**Created:** [January 28, 2021, 2:01pm UTC](https://discourse.julialang.org/t/bukdu-how-to-display-favicon-ico/54123 "2021-01-28T14:01:15Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![rbontekoe](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/rbontekoe/32/5981_2.png) [@rbontekoe](https://discourse.julialang.org/u/rbontekoe)
#### Post date: [January 31, 2021, 10:33am UTC](https://discourse.julialang.org/t/bukdu-how-to-display-favicon-ico/54123/3 "2021-01-31T10:33:03Z")

</div>

@wookyoung, thank you. It works great.

I created a folder public with favicon.ico and changed the routes as follows:

```julia
routes() do
  get("/", WebController, index)
  get("/agingreport", WebController, aging_report)
  get("/gl", WebController, gl)
  plug(Plug.Static, at="/", from=normpath(@ __DIR__ , "public"))
end

```

Output:

```julia
Bukdu Listening on 0.0.0.0:8000
INFO: GET WebController index 200 /
INFO: GET StaticController readfile 200 /favicon.ico
INFO: GET WebController aging_report 200 /agingreport

```

---

_[View the full topic](https://discourse.julialang.org/t/bukdu-how-to-display-favicon-ico/54123)._
