aboutsummaryrefslogtreecommitdiffstats
path: root/guide
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-03-02 03:06:45 +0100
committerLoïc Hoguin <[email protected]>2013-03-02 03:06:45 +0100
commit8dd6ce83571b54a4cc7fe571c98afdbec57bbc31 (patch)
treec7f910609e2160c3489876fdce65cf0568d4cf03 /guide
parent3a907d175fa740a7cd328fe3bcbf2924174b0e8e (diff)
downloadcowboy-8dd6ce83571b54a4cc7fe571c98afdbec57bbc31.tar.gz
cowboy-8dd6ce83571b54a4cc7fe571c98afdbec57bbc31.tar.bz2
cowboy-8dd6ce83571b54a4cc7fe571c98afdbec57bbc31.zip
Add a recommendation about static files in production to the guide
Diffstat (limited to 'guide')
-rw-r--r--guide/static_handlers.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/guide/static_handlers.md b/guide/static_handlers.md
index b2a9114..c4288c6 100644
--- a/guide/static_handlers.md
+++ b/guide/static_handlers.md
@@ -8,6 +8,10 @@ Static handlers are a built-in REST handler for serving files. They
are available as a convenience and provide fast file serving with
proper cache handling.
+It is recommended to use a Content Distribution Network (CDN) or at
+least a dedicated file server running on a dedicated cookie-less
+hostname for serving your application's static files in production.
+
Usage
-----