Serving directory Index for Plug/Phoenix Static Assets
Directory Index for Plug/Phoenix Static Assets
Providing directory listing may reveal following vulnerabilities:
Here is a list of security advisories against making directory listing available to the public:
Do not provide directory listing unless you are 100% sure about the contents in the directory.
This package is available in Hex as plug_static_ls. The package can be installed as:
Add plug_static_ls
to your list of dependencies in mix.exs
:
def deps do
[{:plug_static_ls, "~> 0.6.1"}]
end
Ensure plug_static_ls
is started before your application:
def application do
[applications: [:plug_static_ls]]
end
The filename locale of the Erlang VM must be explicitly specified to UTF-8.
See Erlang’s erl +fnu
option description for the details.
Note: Elixir assumes UTF-8 usage on the filenames and internal strings.
Add PlugStaticLs
after Plug.Static
in endpoint.ex
. The access restriction options for PlugStaticLs
should include the corresponding setting of Plug.Static
. Allow access only to the directories where the index is really required.
plug Plug.Static, at: "/", from: :my_app
plug PlugStaticLs, at: "/", from: :my_app, only: ~w(with_listing)
# Note: non-existent file will be routed here
# Explicit plug to catch this case is required
Dialyzer via dialyxir can be used via mix dialyzer
.
The basic skeleton of this package is derived fromstatic.ex
aka Plug.Static
module of the Plug repository.
The directory listing page design is derived from Yaws Web Server.