0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00

Convert the static handler example to a release

Temporarily hardcode the list of mimetypes.
This commit is contained in:
Loïc Hoguin 2013-09-09 15:51:41 +02:00
parent 24a22fa657
commit 28f90b81fa
7 changed files with 43 additions and 57 deletions

View file

@ -0,0 +1,14 @@
PROJECT = static_world
DEPS = cowboy
dep_cowboy = pkg://cowboy master
.PHONY: release clean-release
release: clean-release all
relx
clean-release:
rm -rf _rel
include ../../erlang.mk

View file

@ -1,49 +1,39 @@
Cowboy Static File Handler Static file handler example
========================== ===========================
To compile this example you need rebar in your PATH. To try this example, you need GNU `make`, `git` and
[relx](https://github.com/erlware/relx) in your PATH.
Type the following command: To build the example, run the following command:
```
$ rebar get-deps compile ``` bash
$ make
``` ```
You can then start the Erlang node with the following command: To start the release in the foreground:
```
./start.sh ``` bash
$ ./_rel/bin/hello_world_example console
``` ```
Cowboy will serve all the files you put in the priv/ directory. The example will serve all the files found in the `priv`
You can replace the filename given in the example URL with the directory. For example:
one of a file you added to this directory to receive that file.
Example * [Plain text file](http://localhost:8080/test.txt)
------- * [HTML5 video demo](http://localhost:8080/video.html)
Show that the file is returned as an octet-stream Example output
--------------
``` bash ``` bash
$ curl -i http://localhost:8080/test.txt $ curl -i http://localhost:8080/test.txt
HTTP/1.1 200 OK HTTP/1.1 200 OK
connection: keep-alive connection: keep-alive
server: Cowboy server: Cowboy
date: Fri, 28 Sep 2012 04:19:40 GMT date: Mon, 09 Sep 2013 13:49:50 GMT
content-length: 52 content-length: 52
Content-Type: application/octet-stream content-type: text/plain
Last-Modified: Fri, 28 Sep 2012 04:01:20 GMT last-modified: Fri, 18 Jan 2013 16:33:31 GMT
If you read this then the static file server works! If you read this then the static file server works!
``` ```
Finally download and cat the file to verify
``` bash
$ curl -sLO http://localhost:8080/test.txt
$ cat test.txt
If you read this then the static file server works!
```
HTML5 Video Example
-------------------
Open http://localhost:8080/video.html in your favorite browser.

View file

@ -1,6 +0,0 @@
{deps, [
{cowboy, ".*",
{git, "git://github.com/extend/cowboy.git", "master"}},
{mimetypes, ".*",
{git, "git://github.com/spawngrid/mimetypes.git", "master"}}
]}.

View file

@ -0,0 +1,2 @@
{release, {static_world_example, "1"}, [static_world]}.
{extended_start_script, true}.

View file

@ -1,15 +0,0 @@
%% Feel free to use, reuse and abuse the code in this file.
-module(static_world).
%% API.
-export([start/0]).
%% API.
start() ->
ok = application:start(crypto),
ok = application:start(cowlib),
ok = application:start(ranch),
ok = application:start(cowboy),
ok = application:start(static_world).

View file

@ -15,7 +15,12 @@ start(_Type, _Args) ->
{'_', [ {'_', [
{"/[...]", cowboy_static, [ {"/[...]", cowboy_static, [
{directory, {priv_dir, static_world, []}}, {directory, {priv_dir, static_world, []}},
{mimetypes, {fun mimetypes:path_to_mimes/2, default}} {mimetypes, [
{<<".html">>, [<<"text/html">>]},
{<<".txt">>, [<<"text/plain">>]},
{<<".mp4">>, [<<"video/mp4">>]},
{<<".ogv">>, [<<"video/ogg">>]}
]}
]} ]}
]} ]}
]), ]),

View file

@ -1,4 +0,0 @@
#!/bin/sh
erl -pa ebin deps/*/ebin -s static_world \
-eval "io:format(\"Point your browser at http://localhost:8080/test.txt~n\")." \
-eval "io:format(\"Point your browser at http://localhost:8080/video.html~n\")."