mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-16 05:00:24 +00:00
Rename example 'static' to 'static_world' to avoid confusion
This commit is contained in:
parent
eaaa81cce6
commit
f96e20aef7
12 changed files with 13 additions and 13 deletions
49
examples/static_world/README.md
Normal file
49
examples/static_world/README.md
Normal file
|
@ -0,0 +1,49 @@
|
|||
Cowboy Static File Handler
|
||||
==========================
|
||||
|
||||
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.
|
||||
|
||||
Example
|
||||
-------
|
||||
|
||||
Show that the file is returned as an octet-stream
|
||||
|
||||
``` bash
|
||||
$ curl -i http://localhost:8080/test.txt
|
||||
HTTP/1.1 200 OK
|
||||
connection: keep-alive
|
||||
server: Cowboy
|
||||
date: Fri, 28 Sep 2012 04:19:40 GMT
|
||||
content-length: 52
|
||||
Content-Type: application/octet-stream
|
||||
Last-Modified: Fri, 28 Sep 2012 04:01:20 GMT
|
||||
|
||||
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.
|
Loading…
Add table
Add a link
Reference in a new issue