diff options
author | Loïc Hoguin <[email protected]> | 2012-10-01 11:42:40 -0700 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-10-01 11:42:40 -0700 |
commit | f060d2dfcae9a622fa433f4f88d27548e94017eb (patch) | |
tree | c923ef729c478ad1b76dad1abfc5be35d22f1075 /examples/static/README.md | |
parent | 0e01b8204628cdaf345e39014d1fe49227ef1c0a (diff) | |
parent | 855828d15cdeea343ba499071c14caaeeec19dab (diff) | |
download | cowboy-f060d2dfcae9a622fa433f4f88d27548e94017eb.tar.gz cowboy-f060d2dfcae9a622fa433f4f88d27548e94017eb.tar.bz2 cowboy-f060d2dfcae9a622fa433f4f88d27548e94017eb.zip |
Merge pull request #269 from seryl/patch-1
Fixing recursive examples README
Diffstat (limited to 'examples/static/README.md')
-rw-r--r-- | examples/static/README.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/static/README.md b/examples/static/README.md index a9b9f5b..ef46312 100644 --- a/examples/static/README.md +++ b/examples/static/README.md @@ -16,3 +16,29 @@ You can then start the Erlang node with the following command: 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! +``` |