0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00
cowboy/examples/web_server
Loïc Hoguin 4a30198f90 Make cowlib a proper dependency
Start moving a few functions from Cowboy into cowlib.
2013-09-04 19:24:54 +02:00
..
priv Add a web server example 2013-02-16 02:21:54 -06:00
src Make cowlib a proper dependency 2013-09-04 19:24:54 +02:00
README.md Add a web server example 2013-02-16 02:21:54 -06:00
rebar.config Add a web server example 2013-02-16 02:21:54 -06:00
start.sh Add a web server example 2013-02-16 02:21:54 -06:00

Cowboy Static File Handler with Index Support

To compile this example you need rebar in your PATH.

Type the following command:

$ rebar get-deps compile

You can then start the Erlang node with the following command:

./start.sh

Cowboy will serve all the files you put in the priv/ directory. You can replace the filename given in the example URL with the one of a file you added to this directory to receive that file. A middleware has been added that will re-route the request to a different handler if the requested path is a directory.

Example

Point your browser to http://localhost:8080 to see the contents of priv/. You can click on a link to see that file. If HTML is not preferred, the contents of a directory will be listed as a JSON array (e.g. with curl http://localhost:8080).