Static path in custom folder?

You need to include the custom in your MyApp.Endpoint module. That file is located at lib/my_app/endpoint.ex

defmodule MyApp.Endpoint
  use Phoenix.Endpoint, otp_app: :my_app

  # ...

  plug Plug.Static,
    at: "/", from: :my_app, gzip: false,
    only: ~w(css custom fonts images js favicon.ico robots.txt)

  # ...

end