aboutsummaryrefslogtreecommitdiffstats
path: root/examples/static/README.md
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-01-30 22:13:31 +0100
committerLoïc Hoguin <[email protected]>2013-01-30 22:13:31 +0100
commitf96e20aef7cce6d47535ab63c36452f6c9e1c444 (patch)
treeb6ae3cd187ebe6d6c2eb48819f4cd4be0253757f /examples/static/README.md
parenteaaa81cce693e6dbbe2a48a594cd4bcd424c0495 (diff)
downloadcowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.tar.gz
cowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.tar.bz2
cowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.zip
Rename example 'static' to 'static_world' to avoid confusion
Diffstat (limited to 'examples/static/README.md')
-rw-r--r--examples/static/README.md49
1 files changed, 0 insertions, 49 deletions
diff --git a/examples/static/README.md b/examples/static/README.md
deleted file mode 100644
index 78f5338..0000000
--- a/examples/static/README.md
+++ /dev/null
@@ -1,49 +0,0 @@
-Cowboy Static Files Server
-==========================
-
-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.