diff options
author | Loïc Hoguin <[email protected]> | 2013-02-16 14:39:15 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-02-16 14:39:15 +0100 |
commit | 39af3010cbf0a2340e4424031f7397d52bf4b77d (patch) | |
tree | 6a4a9c6a7764b3f9df1ada158e9e58df754031db /examples/web_server/priv | |
parent | e102b3ac09bebf4ea413af3d6c6d62c8667c566f (diff) | |
parent | f112cdf643c520bb6554a2d8efa882e8e904b984 (diff) | |
download | cowboy-39af3010cbf0a2340e4424031f7397d52bf4b77d.tar.gz cowboy-39af3010cbf0a2340e4424031f7397d52bf4b77d.tar.bz2 cowboy-39af3010cbf0a2340e4424031f7397d52bf4b77d.zip |
Merge branch 'web_server_example' of git://github.com/acammack/cowboy
Diffstat (limited to 'examples/web_server/priv')
-rw-r--r-- | examples/web_server/priv/small.mp4 | bin | 0 -> 383631 bytes | |||
-rw-r--r-- | examples/web_server/priv/small.ogv | bin | 0 -> 872453 bytes | |||
-rw-r--r-- | examples/web_server/priv/test.txt | 1 | ||||
-rw-r--r-- | examples/web_server/priv/video.html | 11 |
4 files changed, 12 insertions, 0 deletions
diff --git a/examples/web_server/priv/small.mp4 b/examples/web_server/priv/small.mp4 Binary files differnew file mode 100644 index 0000000..1fc4788 --- /dev/null +++ b/examples/web_server/priv/small.mp4 diff --git a/examples/web_server/priv/small.ogv b/examples/web_server/priv/small.ogv Binary files differnew file mode 100644 index 0000000..6409d6e --- /dev/null +++ b/examples/web_server/priv/small.ogv diff --git a/examples/web_server/priv/test.txt b/examples/web_server/priv/test.txt new file mode 100644 index 0000000..760cddb --- /dev/null +++ b/examples/web_server/priv/test.txt @@ -0,0 +1 @@ +If you read this then the static file server works! diff --git a/examples/web_server/priv/video.html b/examples/web_server/priv/video.html new file mode 100644 index 0000000..eca63ee --- /dev/null +++ b/examples/web_server/priv/video.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<body> + <h1>HTML5 Video Example</h1> + <video controls> + <source src="small.ogv" type="video/ogg"/> + <source src="small.mp4" type="video/mp4"/> + </video> + <p>Videos taken from <a href="http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/">TechSlides</a></p> +</body> +</html> |